-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
54
{
"name": "stc-localstorage",
"description": "LocalStorage for stc",
"version": "1.0.10",
"author": {
"name": "quguangyu",
"email": "[email protected]"
},
"scripts": {
"test": "ava test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/",
"compile": "../node_modules/babel-cli/bin/babel.js --presets es2015-loose,stage-1 --plugins transform-runtime src/ --out-dir lib/ --source-maps",
"watch-compile": "npm run compile -- --watch",
"watch": "npm run watch-compile",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [
{
"name": "quguangyu",
"email": "[email protected]"
}
],
"main": "lib/index.js",
"dependencies": {
"stc-helper": "1.x.x",
"stc-plugin": "1.x.x",
"babel-runtime": "6.x.x"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-cli": "6.7.7",
"babel-core": "6.x.x",
"babel-eslint": "6.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-es2015-loose": "7.0.0",
"babel-preset-stage-1": "6.x.x",
"eslint": "2.8.0",
"istanbul": "0.4.0"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/stcjs/stc-localstorage"
},
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/stcjs/stc-localstorage/issues"
}
}