forked from AlphaBao/tiny-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "tiny-storage",
"version": "0.1.0",
"description": "A tiny localStorage util",
"repository": {
"type": "git",
"url": "https://github.com/AlphaBao/tiny-storage.git"
},
"main": "index.js",
"scripts": {
"dev": "webpack --mode development --watch",
"prod": "webpack --mode production",
"lint": "eslint src test",
"ci": "karma start --single-run --browsers Firefox && npm run lint",
"test": "karma start --single-run && npm run lint",
"watch": "karma start"
},
"keywords": [
"localstorage",
"local",
"storage"
],
"author": "tianfangye.com",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.1.4",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^2.0.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.13",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
}
}