-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "superapi-cache",
"version": "0.12.0",
"description": "Caching module for superapi",
"homepage": "https://github.com/stephanebachelier/superapi-cache",
"author": {
"name": "Stéphane Bachelier",
"email": "stephane.bachelier@gmail.com",
"url": "https://github.com/stephanebachelier"
},
"files": [
"/dist",
"/lib"
],
"main": "dist/index.js",
"jsnext:main": "lib/index.js",
"keywords": [
"superapi",
"cache",
"xhr",
"request"
],
"standard": {
"ignore": [
"/dist"
]
},
"scripts": {
"clean": "rimraf dist",
"lint": "standard",
"codecov": "npm run test:coverage -s && codecov < coverage/lcov.info",
"test": "babel-tape-runner test/*.js | tap-spec",
"test:coverage": "babel-node node_modules/.bin/isparta cover test/",
"test:watch": "watch 'npm test' test lib",
"prebuild": "npm run clean -s",
"compile:bundle": "WEBPACK_ENV=dev webpack && WEBPACK_ENV=build webpack",
"compile:watch": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"build": "babel lib --out-dir dist",
"build:watch": "watch 'npm run build' lib",
"preversion": "npm run lint -s && npm run test -s && npm run build -s",
"postversion": "git push origin master --follow-tags",
"deploy": "git pull --rebase origin master && git push origin master",
"bundle": "npm run build && npm run compile:bundle"
},
"repository": "https://github.com/stephanebachelier/superapi-cache",
"license": "MIT",
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-eslint": "^5.0.0-beta6",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-tape-runner": "^2.0.0",
"blue-tape": "^0.1.11",
"bluebird": "^3.1.1",
"debug": "^2.2.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.2.0",
"isparta": "^4.0.0",
"localforage": "^1.3.1",
"lodash": "^3.10.1",
"rimraf": "^2.5.0",
"sinon": "^1.17.2",
"standard": "^5.4.1",
"superagent-dist": "^1.6.2",
"superapi": "^0.20.0",
"tap-spec": "^4.1.1",
"tape": "^4.3.0",
"watch": "^0.17.1",
"webpack": "^1.12.10"
}
}