-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.48 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
{
"name": "fso",
"version": "2.7.0",
"description": "fso - FileSystemObject is a objective fs interface like Pathname(ruby)",
"keywords": [
"fs",
"filesystem",
"pathname"
],
"main": "./dist/lib/fso.js",
"types": "./dist/lib/fso.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "npm run dist",
"prepublishOnly": "npm-run-all test lint",
"clean": "rimraf dist coverage",
"dist": "npm-run-all clean dist:js dist:ts",
"dist:js": "tsc",
"dist:ts": "shx cp src/lib/*.d.ts dist/lib",
"test": "nyc mocha",
"lint": "eslint .",
"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 --disableOutputCheck --includeDeclarations --excludeExternals --excludeNotExported src && cd doc && git status && cd .."
},
"dependencies": {},
"devDependencies": {
"@types/node": "^13.1.4",
"eslint": "^6.8.0",
"eslint-config-narazaka": "^1.0.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^7.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"power-assert": "^1.6.0",
"rimraf": "^3.0.0",
"shx": "^0.3.0",
"sinon": "^9.0.0",
"typedoc": ">=0.15.6",
"typescript": "^3.7.4"
},
"author": {
"name": "narazaka",
"url": "https://narazaka.net/"
},
"license": "Zlib",
"repository": {
"type": "git",
"url": "https://github.com/Narazaka/fso.git"
}
}