-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.05 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
{
"name": "@swellaby/azp-bump-tests",
"description": "functional tests for our azp-bump module",
"version": "1.0.1",
"private": true,
"license": "MIT",
"scripts": {
"lint": "eslint **/*.js",
"clean": "rimraf .testresults .testcontext",
"pretest": "npm run clean && mkdir .testcontext && ncp test/fixtures/ .testcontext/lib/ && ncp test/fixtures/ .testcontext/cli/",
"test": "mocha",
"target:remove": "npm r azp-bump",
"pretarget:install:latest": "npm run target:remove",
"target:install:latest": "npm i --no-save azp-bump",
"pretarget:install": "npm run target:remove",
"target:install": "npm i --no-save",
"dev:reset": "npm run clean && node -e \"require('rimraf').sync('node_modules');\" && npm run dev:setup",
"dev:setup": "npm i && npm run lint"
},
"devDependencies": {
"@swellaby/eslint-config": "^2.0.0",
"chai": "^4.2.0",
"eslint": "^8.0.0",
"mocha": "^9.2.2",
"mocha-multi-reporters": "^1.1.7",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5"
},
"dependencies": {}
}