-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "flash-store",
"version": "0.7.1",
"description": "FlashStore is a Key-Value persistent storage with easy to use ES6 Map-like API(both Async and Sync support), powered by LevelDB and TypeScript.",
"main": "bundles/flash-store.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --module esnext",
"pack": "npm pack",
"clean": "shx rm -fr dist/* bundles/*",
"doc": "npm run dist && echo '# FlashStore v'$(jq -r .version package.json)' Documentation\n' > docs/index.md && jsdoc2md dist/flash-store.js>> docs/index.md",
"demo": "ts-node example/demo.ts",
"dist": "npm run clean && npm run build && npm run rollup && npm run dist:es6to5",
"dist:es6to5": "tsc --out ./bundles/flash-store.umd.js --target es5 --allowJs bundles/flash-store.es6.umd.js --lib es6,dom",
"lint": "tslint --project tsconfig.json && npm run clean && tsc --noEmit",
"rollup": "rollup -c",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/zixia/flash-store.git"
},
"keywords": [
"leveldb",
"nosql",
"database"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/zixia/flash-store/issues"
},
"homepage": "https://github.com/zixia/flash-store#readme",
"dependencies": {
"app-root-path": "^2.0.1",
"brolog": "^1.2.6",
"cuid": "^2.1.1",
"encoding-down": "^2.3.4",
"levelup": "github:zixia/levelup",
"nosql-leveldb": "^3.0.1",
"rimraf": "^2.6.2",
"state-switch": "^0.6.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/blue-tape": "^0.1.31",
"@types/node": "^10.5.5",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/sinon": "^5.0.1",
"blue-tape": "^1.0.0",
"git-scripts": "git+https://github.com/nkzawa/git-scripts.git",
"jsdoc-to-markdown": "^4.0.1",
"rollup": "^0.63.5",
"rollup-plugin-json": "^3.0.0",
"semver": "^5.5.0",
"shx": "^0.3.2",
"sinon": "^6.1.4",
"sinon-test": "^2.1.1",
"source-map-support": "^0.5.6",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^3.0.1"
},
"files": [
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"bundles/",
"src/",
"dist/"
],
"git": {
"scripts": {
"pre-push": "./scripts/pre-push.sh"
}
},
"engines": {
"node": ">= 10"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}