-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.3 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
{
"name": "immersive",
"version": "2.0.0",
"description": "A framework to build immersive CLIs & great developer tools.",
"main": "src/index.js",
"repository": "https://github.com/MatthieuLemoine/immersive",
"author": "MatthieuLemoine",
"license": "MIT",
"dependencies": {
"acorn": "^8.7.1",
"acorn-walk": "^8.2.0",
"chalk": "^2.4.1",
"cli-table3": "^0.5.1",
"conductor": "^1.4.1",
"conf": "^2.0.0",
"figlet": "^1.2.0",
"ramda": "^0.25.0",
"require-dir": "^1.1.0",
"yargs-parser": "^10.1.0"
},
"devDependencies": {
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.1.0",
"husky": "^1.1.1",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3"
},
"scripts": {
"test": "jest __tests__/",
"lint": "eslint .",
"prettify": "prettier --write \"**/*.js*\" --list-different",
"pretty-check": "prettier \"**/*.js*\" --list-different",
"check-version": "node scripts/check-version.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}
}