-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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": "offline-dataloader",
"version": "0.0.5",
"description": "offline data support with or without service workers",
"main": "dist/dataloaders.js",
"scripts": {
"test": "mocha src/*.test.js src/utils/*.test.js -w --reporter progress --require babel-core/register -r jsdom-global/register",
"start-mockapi": "json-server --watch src/mockapi/db.json --port 5001"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cjwadair/offline-dataloader.git"
},
"keywords": [
"offline",
"appcache",
"service worker"
],
"author": "Chris Adair <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cjwadair/offline-dataloader/issues"
},
"homepage": "https://github.com/cjwadair/offline-dataloader#readme",
"dependencies": {
"localforage": "1.4.3"
},
"devDependencies": {
"babel-core": "6.22.1",
"babel-preset-es2015": "6.22.0",
"babelify": "7.3.0",
"browserify": "14.0.0",
"chai": "3.5.0",
"del": "2.2.2",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-mocha": "4.0.1",
"gulp-sourcemaps": "2.4.1",
"gulp-uglify": "2.0.1",
"json-server": "0.9.5",
"mocha": "3.2.0",
"testdouble": "1.11.1",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
"babel": {
"presets": [
"es2015"
]
}
}