-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
37 lines (37 loc) · 868 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
{
"name": "gojek-api",
"version": "0.1.0",
"main": "build/index.js",
"files": [
"package.json",
"README.md",
"build"
],
"license": "MIT",
"devDependencies": {
"ava": "^0.18.2",
"babel-cli": "^6.24.0",
"babel-preset-env": "^1.3.2",
"eslint": "^3.19.0",
"eslint-config-standard": "^7.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^2.1.1",
"np": "^2.13.1"
},
"scripts": {
"build": "eslint src --fix && babel src -d build -i *.test.js",
"prepublish": "npm run build",
"test:once": "ava src/**/*.test.js",
"dev": "npm run build -- -w",
"test": "ava src/**/*.test.js --watch",
"verify": "npm run build && npm run test:once",
"release": "np"
},
"dependencies": {
"axios": "^0.16.0",
"bluebird": "^3.5.0"
},
"babel": {
"presets": ["env"]
}
}