-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "sakurascript-executer",
"version": "2.0.6",
"description": "Ukagaka SakuraScript Executer",
"keywords": [
"ikagaka",
"ukagaka"
],
"main": "./dist/lib/sakurascript-executer.js",
"types": "./dist/lib/sakurascript-executer.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run dist",
"prepublishOnly": "npm run lint && npm run test",
"dist": "shx rm -rf dist && cross-env NODE_ENV=production tsc",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"test": "npm run lint && npm run mocha",
"mocha": "cross-env NODE_ENV=test nyc mocha",
"docdist": "cd doc && git clean -fd && git rm -rf * && cd .. && npm run doc && cd doc && touch .nojekyll && git add . && git commit -m doc && git push",
"doc": "typedoc --mode file --out doc --readme Readme.md --disableOutputCheck --excludeNotExported lib && cd doc && git status && cd .."
},
"dependencies": {
"sakurascript": "^1.1.4"
},
"peerDependencies": {
"sakurascript": "^1.1.4"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.7.7",
"@types/power-assert": "^1.5.3",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"cross-env": "^7.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"espower-typescript": "^9.0.2",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"power-assert": "^1.6.1",
"prettier": "^1.19.1",
"shx": "^0.3.2",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"url": "https://github.com/Ikagaka/sakurascript-executer.js",
"author": {
"name": "Narazaka",
"email": "info@narazaka.net",
"url": "https://narazaka.net/"
},
"license": "Zlib",
"repository": {
"type": "git",
"url": "https://github.com/Ikagaka/sakurascript-executer.js.git"
}
}