-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "xp-storage",
"version": "2.0.10",
"description": "Lib for localStorage, support expired time",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/typings/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"dev": "npm run clean && tsc -w",
"build": "npm run clean && node scripts/build.js",
"test": "npm run build && npm run jasmine",
"jasmine": "istanbul cover jasmine-node test",
"prepublish": "npm run test"
},
"dependencies": {},
"devDependencies": {
"tslib": "^1.9.3",
"@types/node": "^9.6.31",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"jasmine-node": "^1.15.0",
"lodash.merge": "^4.6.1",
"multi-shell": "^1.0.3",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-typescript2": "^0.13.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^7.1.0",
"typescript": "^2.9.2",
"uglify-js": "^3.4.8"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"engines": {
"node": ">=6"
}
}