forked from cozy/cozy-libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 894 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
43
{
"name": "cozy-app-publish",
"version": "0.10.2",
"main": "index.js",
"author": "Cozy",
"license": "MIT",
"scripts": {
"test": "jest --verbose --coverage",
"test:manual": "jest test/manual.spec.js",
"test:publish": "jest test/publish.spec.js",
"test:travis": "jest test/travis.spec.js"
},
"bin": {
"cozy-app-publish": "./cozy-app-publish.js"
},
"dependencies": {
"chalk": "2.4.2",
"commander": "2.19.0",
"cross-spawn": "6.0.5",
"fs-extra": "7.0.1",
"node-fetch": "2.2.0",
"prompt": "1.0.0",
"tar": "4.4.8"
},
"files": [
"index.js",
"cozy-app-publish.js",
"LICENSE",
"README.md",
"utils",
"lib"
],
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"jest": "23.6.0",
"jest-fetch-mock": "1.7.5"
},
"jest": {
"setupFiles": [
"./test/jestLibs/setupJest.js"
]
}
}