-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.72 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
72
73
{
"name": "ndc",
"version": "0.2.0",
"description": "ndc",
"license": "MIT",
"repository": "https://github.com/fridayy/ndc",
"author": {
"name": "Benjamin Krenn",
"email": "[email protected]",
"url": "www.leftshift.one"
},
"keywords": [
"npm dependency check"
],
"files": [
"lib",
"bin"
],
"main": "./lib/index",
"preferGlobal": true,
"bin": {
"ndc": "./bin/ndc"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "yarn run build",
"prebuild": "yarn run clean && yarn run lint && echo Using TypeScript && tsc --version",
"build": "yarn test && tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "yarn run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"axios": "^0.21.2",
"chalk": "^2.4.1",
"commander": "2.16.0",
"immutable": "3.8.2",
"rxjs": "6.2.1",
"rxjs-compat": "6.2.1",
"semver": "^5.5.0"
},
"devDependencies": {
"@types/jest": "23.1.4",
"@types/node": "10.5.2",
"@types/request-promise": "4.1.41",
"@types/rx": "4.1.1",
"@types/semver": "^5.5.0",
"coveralls": "3.0.2",
"jest": "23.3.0",
"rimraf": "2.6.2",
"ts-jest": "23.0.0",
"ts-node": "7.0.0",
"tslint": "5.10.0",
"tslint-config-prettier": "^1.13.0",
"typescript": "2.9.2"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}