-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
41 lines (41 loc) · 878 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
41
{
"name": "modern-node",
"version": "2.9.1",
"dependencies": {
"camelcase": "^6.0.0",
"chalk": "^4.1.0",
"execa": "^4.0.3",
"fast-glob": "^3.2.4",
"find-up": "^4.1.0",
"fs-extra": "^9.0.1",
"jest": "^26.2.2",
"jest-watch-typeahead": "^0.6.0",
"prettier-standard": "^16.4.1",
"read-pkg-up": "^7.0.1",
"username": "^5.1.0"
},
"bin": {
"modern": "./src/cli.js"
},
"scripts": {
"install": "node src/install.js",
"uninstall": "node src/uninstall.js",
"lint": "./src/cli.js lint",
"format": "./src/cli.js format",
"test": "node ./src/cli.js test",
"precommit": "./src/cli.js precommit"
},
"engines": {
"node": ">= 8"
},
"files": [
"src",
"template",
"template-typescript"
],
"license": "MIT",
"devDependencies": {
"tmp": "^0.2.1",
"typescript": "^3.9.7"
}
}