-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "tz-storage",
"version": "1.0.8",
"description": "A light-weight localStorage tool.",
"main": "dist/tz-storage.js",
"types": "types/index.d.ts",
"scripts": {
"test": "jest --coverage",
"coverage": "jest --coverage --collectCoverage && codecov --token=$CODECOV_TOKEN",
"build:main": "rollup -c build/rollup.config.js",
"build:min": "rollup -c build/rollup.minify.js",
"build": "npm run build:main && npm run build:min"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mecoepcoo/tz-storage.git"
},
"keywords": [
"js-localstorage",
"localstorage",
"storage"
],
"author": {
"name": "Tianzhen",
"email": "mecoepcoo@vip.qq.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mecoepcoo/tz-storage/issues"
},
"homepage": "https://github.com/mecoepcoo/tz-storage#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"babel": "^6.23.0",
"babel-eslint": "^10.0.1",
"babel-preset-es2015-rollup": "^3.0.0",
"codecov": "^3.2.0",
"eslint": "^5.15.3",
"jest": "^24.5.0",
"mock-local-storage": "^1.1.8",
"rollup": "^1.7.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-eslint": "^5.0.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-replace": "^2.1.1",
"rollup-plugin-uglify": "^6.0.2"
}
}