-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.88 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
{
"name": "sync-client",
"version": "1.0.0-beta.11",
"bugs": {
"url": "https://github.com/nponiros/sync_client/issues"
},
"license": "MIT",
"author": "Nikolas Poniros <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/nponiros/sync_client.git"
},
"devDependencies": {
"babel-core": "6.22.1",
"babel-loader": "6.2.10",
"babel-plugin-transform-runtime": "6.22.0",
"babel-preset-es2015": "6.22.0",
"eslint": "3.14.1",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.0",
"eslint-plugin-standard": "2.0.1",
"jasmine-core": "2.5.2",
"karma": "1.4.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"publish-please": "2.2.0",
"webpack": "2.2.0"
},
"scripts": {
"build": "npm run test && npm run build:dev && npm run build:prod",
"build:dev": "webpack --config webpack.dev.config.js",
"build:prod": "webpack --config webpack.prod.config.js",
"test": "npm run lint && npm run test:unit",
"test:unit": "karma start karma-unit.conf.js",
"test:integration": "karma start karma-integration.conf.js",
"lint": "eslint --config .eslintrc 'src/**/*.js' 'test/**/*.js'",
"lint:fix": "eslint --fix --config .eslintrc 'src/**/*.js' 'test/**/*.js'",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"description": "Module which uses Dexie to save data and can later use a server to synchronize the data in the database with other devices",
"keywords": [
"IndexedDB",
"Dexie",
"offline",
"synchronization"
],
"main": "dist/sync-client.js",
"dependencies": {
"dexie": "2.x.x",
"dexie-observable": "1.0.0-beta.4",
"dexie-syncable": "1.0.0-beta.4",
"isomorphic-fetch": "2.2.1"
}
}