-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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": "virtual-module",
"version": "0.1.2",
"publishConfig": {
"access": "public"
},
"description": "my supreme project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "ts-node test/index.test.ts",
"prebuild": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build",
"typedoc": "typedoc --out public --mode file --theme minimal --excludeNotExported --excludeExternals --excludePrivate --excludeProtected"
},
"repository": {
"url": "egoist/virtual-module",
"type": "git"
},
"author": "egoist<[email protected]>",
"license": "MIT",
"dependencies": {
"resolve": "^1.14.2"
},
"devDependencies": {
"@types/node": "^12.12.7",
"@types/resolve": "^0.0.8",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"prettier": "^1.15.2",
"ts-node": "^8.6.2",
"typedoc": "^0.15.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
]
}
}