-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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": "find-dup-values",
"version": "0.0.1",
"description": "",
"main": "build/main.js",
"author": "qualitymanifest",
"license": "ISC",
"scripts": {
"postinstall": "npm run build",
"start": "node build/cliEntry/index.js",
"build": "npx tsc",
"watch:build": "tsc -w",
"watch:start": "nodemon build/main.js",
"dev": "concurrently npm:watch:*",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/async": "^3.2.3",
"@types/glob-to-regexp": "^0.4.0",
"@types/is-glob": "^4.0.1",
"@types/minimist": "^1.2.0",
"@types/node": "^13.13.6",
"async": "^3.2.0",
"colors": "^1.4.0",
"glob-to-regexp": "^0.4.1",
"is-glob": "^4.0.1",
"minimist": "^1.2.5",
"typescript": "^3.9.2"
},
"devDependencies": {
"@types/jest": "^25.2.2",
"babel-jest": "^25.5.1",
"concurrently": "^5.2.0",
"jest": "^25.5.4",
"nodemon": "^2.0.4",
"safe-regex": "^2.1.1"
}
}