-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.31 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": "stc-cdn-qiniu",
"description": "stcjs cdn adapter for qiniu",
"version": "1.0.0",
"author": {
"name": "alphatr",
"email": "trefoiles@gmail.com"
},
"scripts": {
"test": "ava test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 50000 --recursive -R spec test/",
"compile": "babel --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/"
},
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "6.x.x",
"qn": "^1.1.1"
},
"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.9.0",
"istanbul": "0.4.0"
},
"keywords": [
"stcjs",
"qiniu",
"cdn"
],
"repository": {
"type": "git",
"url": "https://github.com/stcjs/stc-cdn-qiniu"
},
"engines": {
"node": ">=4.0.0"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/stcjs/stc-cdn-qiniu/issues"
}
}