-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 953 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "papir",
"productName": "Papir",
"description": "Rest API Modelling library",
"version": "2.3.5",
"license": "ISC",
"main": "./lib/papir.js",
"author": "StorePilot",
"homepage": "https://github.com/StorePilot/papir#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/StorePilot/papir.git"
},
"bugs": {
"url": "https://github.com/StorePilot/papir/issues"
},
"keywords": [
"rest",
"api",
"auth",
"soap",
"wsse",
"oauth"
],
"scripts": {
"build": "npx babel src/ -d lib --presets=@babel/env",
"lint": "eslint --ext .js src"
},
"dependencies": {
"axios": "^0.19.0",
"core-js": "^2.6.5",
"moment": "^2.24.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"eslint": "^5.16.0"
}
}