-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.16 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
70
71
{
"name": "narloader",
"version": "2.0.2",
"description": "NarLoader - Nanika ARchive Loader",
"keywords": [
"nar",
"ukagaka"
],
"main": "./dist/lib/NarLoader.js",
"types": "./dist/lib/NarLoader.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run dist",
"prepublishOnly": "npm run lint && npm run test",
"dist": "shx rm -rf dist && tsc",
"lint": "npm run tslint",
"tslint": "tslint -p .",
"test": "npm run test-node && npm run test-web",
"test-node": "cross-env NODE_ENV=test nyc mocha",
"test-web": "cross-env NODE_ENV=test karma start --single-run",
"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 modules --out doc --readme Readme.md --name \"API Document\" --disableOutputCheck --includeDeclarations --excludeNotExported src && cd doc && git status && cd .."
},
"dependencies": {
"fso": "^2.5.15",
"jszip": "^3.1.5",
"nanika-storage": "^3.0.2"
},
"devDependencies": {
"@types/encoding-japanese": "^1.0.15",
"@types/jszip": "3.1.4",
"@types/mocha": "^5.0.0",
"@types/node": "^10.0.3",
"@types/power-assert": "^1.4.29",
"browserfs": "^1.4.3",
"cross-env": "^5.1.3",
"espower-typescript": "^9.0.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.6",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.0",
"nyc": "^12.0.1",
"power-assert": "^1.4.4",
"shx": "^0.3.0",
"ts-loader": "^3.2.0",
"tslint": "^5.9.1",
"typedoc": "^0.12.0",
"typescript": "^2.7.2",
"webpack": "^3.10.0",
"webpack-espower-loader": "^2.0.0"
},
"author": {
"name": "narazaka",
"url": "https://narazaka.net/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ikagaka/NarLoader.git"
}
}