-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.92 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": "ibm-shopping-list-model",
"version": "0.4.0",
"description": "Domain model implementation for the Shopping List series of Offline First demo apps.",
"main": "./dist/bundle.js",
"scripts": {
"test-mocha": "mocha",
"test-karma": "karma start --single-run --browsers ChromeHeadless",
"test": "npm run test-mocha && npm run test-karma",
"posttest": "npm run eslint",
"eslint": "eslint src/ test/",
"build-client": "webpack && webpack --config webpack.config.es6.js",
"build": "npm run build-client",
"repl": "node repl.js",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibm-watson-data-lab/shopping-list-model-js.git"
},
"keywords": [
"offline-first",
"pwa",
"PouchDB",
"CouchDB",
"Cloudant"
],
"author": "Bradley Holt <bradley.holt@us.ibm.com> (https://www.npmjs.com/~bradley-holt)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ibm-watson-data-lab/shopping-list-model-js/issues"
},
"homepage": "https://github.com/ibm-watson-data-lab/shopping-list-model-js#readme",
"dependencies": {
"cuid": "^2.0.2",
"immutable": "^4.0.0-rc.9"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-immutable": "^1.6.0",
"chai-string": "^1.4.0",
"eslint": "^5.0.0",
"hoek": "^5.0.3",
"karma": "^2.0.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"mocha": "^5.0.0",
"pouchdb-find": "^6.4.2",
"pouchdb-memory": "^6.0.0",
"sinon": "^6.0.1",
"tunnel-agent": "^0.6.0",
"webpack": "^4.2.0",
"webpack-command": "^0.4.1"
}
}