-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "conjurate",
"description": "Pluggable generator tool",
"version": "0.8.2",
"author": "Filipe Linhares",
"bin": {
"conjurate": "./cli.js"
},
"bugs": {
"url": "https://github.com/filipelinhares/conjurate/issues"
},
"dependencies": {
"ansi-bold": "^0.1.1",
"ansi-dim": "^0.1.1",
"ansi-gray": "^0.1.1",
"ansi-italic": "^0.1.1",
"change-case": "^3.1.0",
"mri": "^1.1.6",
"resolve-pkg": "^2.0.0",
"signale": "^1.4.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"eslint": "^7.8.0",
"fileshelf": "^0.1.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"standard": "^14.3.4"
},
"homepage": "https://github.com/filipelinhares/conjurate#readme",
"husky": {
"hooks": {
"pre-commit": "npm test && standard --env jest --fix"
}
},
"keywords": [
"conjurate",
"generator",
"scaffold"
],
"license": "MIT",
"main": "cli.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/filipelinhares/conjurate.git"
},
"scripts": {
"test": "npm run test:lint && npm run test:unit",
"test:coverage": "jest --coverage",
"test:lint": "standard --env jest --fix",
"test:unit": "jest"
}
}