-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "@stun3r/acnh-translations",
"version": "1.0.1",
"scripts": {
"clean": "rm -rf cache out",
"clean:out": "rm -rf out",
"clean:cache": "rm -rf cache",
"build": "bash bin/build.sh",
"prettier:fix": "prettier '**/*.ts' README.md --write",
"start": "tsc -w",
"commit": "git-cz",
"release": "run-s version push",
"release:minor": "run-s \"version -- --release-as minor\"",
"release:major": "run-s \"version -- --release-as major\"",
"version": "standard-version"
},
"keywords": [
"acnh",
"datasource"
],
"author": "Thibaut DAVID",
"repository": {
"type": "git",
"url": "git+https://github.com/Stun3R/acnh-translations-sheet-to-json.git"
},
"bugs": {
"url": "https://github.com/Stun3R/acnh-translations-sheet-to-json/issues"
},
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.150",
"@types/node": "^13.13.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "3.1.0",
"googleapis": "39",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"quicktype": "^15.0.223",
"standard-version": "^7.1.0",
"ts-node": "^8.8.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}