-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 968 Bytes
/
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
{
"name": "autoinquirer",
"version": "1.0.0",
"description": "",
"engineStrict": true,
"engines": {
"node": ">= 8.9.0"
},
"main": "build/index.js",
"scripts": {
"start": "npm run build",
"clean": "rimraf coverage build tmp dist",
"build": "tsc -p tsconfig.json",
"watch": "tsc -w -p tsconfig.json",
"test": "npm run test-only",
"test-only": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Gianpaolo Terranova",
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/lodash": "^4.14.164",
"@types/node": "^12.12.34",
"jest": "^24.9.0",
"rimraf": "^3.0.2",
"ts-jest": "^24.3.0",
"tslib": "^1.11.1",
"tsutils": "^3.17.1",
"typescript": "^3.8.3"
},
"dependencies": {
"ajv": "^6.12.0",
"json-schema-ref-parser": "^8.0.0",
"lodash": "^4.17.20",
"mime-types": "^2.1.29",
"moment": "^2.29.1",
"object-path": "^0.11.5"
}
}