-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "win-pause",
"version": "1.0.3",
"description": "Pause & resume windows processes with Node",
"main": "dist/index.js",
"scripts": {
"build": "tsc -d",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"lint": "tslint --project tsconfig.json",
"ci": "npm run lint && npm test && npm run build",
"cd": "npm run ci && npm run test:coverage && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salmoro/win-pause.git"
},
"keywords": [
"windows process"
],
"author": "Upscale Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/salmoro/win-pause/issues"
},
"homepage": "https://github.com/salmoro/win-pause#readme",
"dependencies": {
"@types/node": "^12.7.4"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/adm-zip": "^0.4.32",
"adm-zip": "^0.4.13",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.6.2"
}
}