-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "simple-recipe",
"version": "1.0.0",
"bin": {
"simple-recipe": "./dist/main.js"
},
"main": "./dist/main.js",
"description": "A command line interface that makes writing Minecraft datapack recipes simpler and more pleasant.",
"homepage": "https://github.com/Asha20/simple-recipe",
"repository": {
"type": "git",
"url": "https://github.com/Asha20/simple-recipe"
},
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"test:unit": "jest unit",
"test:unit:watch": "jest unit --watch",
"test:e2e": "jest e2e",
"watch": "tsc -p tsconfig.build.json --watch",
"build": "rimraf dist bin && tsc -p tsconfig.build.json && pkg --out-path bin .",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && pretty-quick --staged"
}
},
"author": "Vukašin Stepanović <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.10",
"@types/js-yaml": "^3.12.5",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.6.0",
"@types/rimraf": "^3.0.0",
"husky": "^4.3.0",
"jest": "^26.4.0",
"pkg": "^4.4.9",
"prettier": "^2.1.2",
"pretty-quick": "^3.0.2",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"dependencies": {
"chalk": "^4.1.0",
"chokidar": "^3.4.2",
"commander": "^6.1.0",
"fp-ts": "^2.8.1",
"glob": "^7.1.6",
"js-yaml": "^3.14.0",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0"
}
}