-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 KB
/
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
43
44
45
46
{
"name": "chrome-store-api",
"version": "1.0.5",
"description": "Chrome webstore API",
"main": "out/index.js",
"repository": {
"type": "git",
"url": "[email protected]:acvetkov/chrome-store-api.git"
},
"scripts": {
"test": "mocha --recursive --compilers js:babel/register --require ./test/setup.js",
"code": "eslint ./src ./test && jscs ./src ./test",
"build": "npm run code && npm run test && npm run babel",
"babel": "npm run clean && babel ./src --out-dir ./out",
"clean": "rm -rf ./out/",
"prepublish": "npm run build"
},
"keywords": [
"chrome",
"webstore",
"api",
"promise"
],
"author": "Aleksey Tsvetkov <[email protected]> (https://github.com/acvetkov)",
"license": "ISC",
"dependencies": {
"bluebird": "^3.0.6",
"debug": "^2.2.0",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"q": "^1.4.1",
"q-io": "^1.13.1"
},
"devDependencies": {
"babel": "^5.8.34",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.2",
"eslint-plugin-react": "^3.10.0",
"jscs": "^2.6.0",
"mocha": "^2.3.4",
"nock": "^3.3.2",
"sinon": "^1.17.2"
}
}