-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "wnpm-ci",
"version": "8.0.0",
"description": "CI support scripts for npm packages",
"main": "index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/wix/wnpm-ci"
},
"scripts": {
"build": ":",
"test": "eslint . --cache && mocha --reporter mocha-env-reporter --timeout 60000",
"release": "./scripts/wnpm-release.js --no-shrinkwrap"
},
"keywords": [
"ci",
"support",
"scripts",
"wix",
"npm"
],
"author": "Shahar Talmi <[email protected]>",
"license": "MIT",
"bin": {
"wnpm-release": "./scripts/wnpm-release.js"
},
"devDependencies": {
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"mocha": "^5.0.0",
"mocha-env-reporter": "^4.0.0",
"verdaccio": "^4.3.4",
"wait-port": "^0.2.6"
},
"dependencies": {
"execa": "^2.0.3",
"fs-extra": "^8.1.0",
"mkdirp": "^0.5.1",
"semver": "^5.2.0",
"tmp": "^0.0.33"
}
}