-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.52 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
{
"name": "ref-db",
"version": "1.0.1",
"description": "auto populated collection backed by cross-platform Storage",
"keywords": [
"Proxy",
"Reflect",
"populate",
"cross-platform",
"Database",
"Storage"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"postinstall": "rm -rf node_modules/@beenotung/tslib/index.*",
"test": "npm run rawtest",
"clean": "rm -rf dist",
"format": "prettier --write \"src/**/*.ts\"",
"postformat": "tslint -p . --fix",
"prebuild": "npm run clean && gen-index",
"build": "tsc",
"postbuild": "rm -rf src/index.ts",
"pretest": "npm run format && npm run build",
"rawtest": "ts-node test/index.ts",
"prepublishOnly": "npm run rawtest && npm run build"
},
"devDependencies": {
"@beenotung/gen-index": "^1.0.7",
"@types/node": "^8.10.39",
"husky": "^1.3.1",
"prettier": "^1.16.1",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.4"
},
"dependencies": {
"@beenotung/tslib": "^13.5.1"
},
"husky": {
"hook": {
"pre-commit": "npm run format"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/ref-db.git"
},
"bugs": {
"url": "https://github.com/beenotung/ref-db/issues"
},
"homepage": "https://github.com/beenotung/ref-db#readme"
}