-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@asmartbear/status",
"version": "1.0.11",
"description": "Display multi-job status on the command-line",
"keywords": [
"status",
"cli"
],
"scripts": {
"type-check": "tsc --noEmit",
"test": "jest --runInBand",
"watch": "npm test -- --watchAll --coverage",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc",
"main": "tsc && node dist/index.js",
"minify": "uglifyjs --compress --mangle --output dist/index.min.js -- dist/index.js",
"postbuild": "npm run minify",
"prerelease": "npm test && npm run build",
"prepare": "npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin main --follow-tags"
},
"devDependencies": {
"@types/jest": "25.2.1",
"@types/mocha": "7.0.2",
"@types/node": "13.11.1",
"benchmark": "2.1.4",
"jest": "25.3.0",
"open-cli": "6.0.1",
"rimraf": "2.6.3",
"standard-version": "6.0.1",
"ts-jest": "25.3.1",
"ts-loader": "6.2.2",
"tslint": "6.1.1",
"typescript": "3.8.3",
"uglify-js": "3.13.8"
},
"license": "MIT",
"repository": {
"url": "[email protected]:asmartbear/status.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/asmartbear/status/issues"
},
"author": {
"name": "Jason Cohen",
"url": "https://github.com/asmartbear"
},
"main": "dist/index.min.js",
"files": [
"dist"
],
"types": "dist",
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "test/.*\\.(ts|tsx|js)$"
}
}