-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.44 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
{
"name": "si-store",
"version": "0.1.2",
"description": "基于Web Storage的缓存库",
"main": "dist/si-store-common.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "node build/build.js",
"test": "karma start test/unit/karma.conf.js --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/myronliu347/store.js.git"
},
"keywords": [
"store"
],
"author": "Myron Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/myronliu347/store.js/issues"
},
"homepage": "https://github.com/myronliu347/store.js#readme",
"devDependencies": {
"babel-core": "^6.13.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015-rollup": "^1.1.1",
"chai": "^3.5.0",
"eslint": "^3.2.2",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"karma": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-rollup-plugin": "^0.2.1",
"karma-sinon-chai": "^1.2.3",
"karma-spec-reporter": "0.0.26",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.11",
"rollup": "^0.34.3",
"rollup-plugin-babel": "^2.3.8",
"rollup-plugin-buble": "^0.12.1",
"rollup-plugin-commonjs": "^3.3.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"dependencies": {}
}