-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "budgie-cli",
"version": "0.3.0",
"description": "Node CLI for Budgie.",
"main": "lib/index.js",
"bin": {
"budgie": "bin/budgie"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highschoolhacking/budgie-cli.git"
},
"keywords": ["general", "language", "syntax", "budgie", "cli"],
"author": "Josh Goldberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/highschoolhacking/budgie-cli/issues"
},
"homepage": "https://github.com/highschoolhacking/budgie-cli#readme",
"dependencies": {
"budgie": "0.3.27",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"glob": "^7.1.5",
"minimatch": "^3.0.4",
"mz": "^2.7.0",
"ts-budgie": "latest",
"typescript": "latest"
},
"devDependencies": {
"@types/chai": "^4.2.4",
"@types/chalk": "^2.2.0",
"@types/commander": "^2.12.2",
"@types/glob": "^7.1.1",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.7",
"@types/mz": "0.0.32",
"@types/node": "^12.11.7",
"@types/sinon": "^7.5.0",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"del": "^5.1.0",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"tslint": "5.20.0",
"tslint-config-prettier": "^1.18.0"
},
"scripts": {
"prettier:write": "prettier --config .prettierrc.json --write",
"prettier:write:all": "npm run prettier:write ./{src,test}/**/*.{json,ts}",
"src": "npm run src:tsc && npm run src:tslint",
"src:tsc": "tsc",
"src:tslint": "tslint -c tslint.json -p tsconfig.json -t stylish",
"test": "npm run test:tsc && npm run test:tslint && npm run test:run",
"test:tsc": "tsc -p test",
"test:tslint": "tslint -c tslint.json -p test/tsconfig.json -t stylish",
"test:run": "mocha test/*.js test/**/*.js",
"verify": "npm run src && npm run test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --write"
}
}
}