-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 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
55
56
57
58
59
60
61
62
63
64
{
"name": "refetch",
"author": "[email protected]",
"version": "0.2.1",
"description": "remote data fetch, ajax, jsonp with cache, promises",
"main": "./es5/index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.config.prod.js",
"eslint": "./node_modules/.bin/eslint src/*",
"es5": "babel src --out-dir es5",
"test": "./node_modules/.bin/gulp test"
},
"keywords": [
"ajax",
"jsonp"
],
"repository": {
"type": "git",
"url": "https://github.com/Lobos/refetch.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/lobos/refetch/issues"
},
"browserify": {
"transform": [
[
"babelify",
{
"es6": true
}
]
]
},
"jshintConfig": {
"strict": false,
"globalstrict": false,
"esnext": true
},
"dependencies": {
"blueimp-md5": "^2.3.0",
"jquery-param": "^0.2.0",
"object-assign": "~4.0.1",
"pinkyswear": "~2.2.2"
},
"devDependencies": {
"babel": "~6.3.13",
"babel-core": "~6.3.21",
"babel-loader": "~6.2.0",
"babel-preset-es2015": "~6.3.13",
"body-parser": "~1.14.2",
"chai": "~3.4.1",
"express": "~4.13.3",
"gulp": "^3.9.0",
"gulp-mocha-phantomjs": "~0.10.1",
"gulp-watch": "~4.3.5",
"istanbul": "~0.4.1",
"jshint": "~2.8.0",
"mocha": "~2.3.4",
"mocha-phantomjs": "~4.0.1",
"webpack": "~1.12.9",
"webpack-stream": "^3.1.0"
}
}