-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 988 Bytes
/
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
{
"name": "pouchflux",
"version": "0.0.14",
"description": "PouchDB flux store",
"author": "Olafur Arason <olafura@olafura.com>",
"repository": {
"type": "git",
"url": "https://github.com/olafura/PouchFlux"
},
"main": "lib",
"license": "Apache 2.0",
"dependencies": {
"alt": "~0.16",
"debug": "^2.1.3",
"object-assign": "^2.0.0",
"pouchdb": "~3.6",
"socket-pouch": "^0.2.0"
},
"devDependencies": {
"babel": "^5.1.11",
"babel-core": "^5.1.11",
"es3ify": "~0.1.3",
"lintspaces": "^0.2.3",
"memdown": "^1.0.0",
"rimraf": "^2.3.2"
},
"keywords": [
"flux",
"alt",
"pouchdb",
"react",
"database"
],
"scripts": {
"build": "npm run clean && npm run build-pf",
"build-pf": "babel src --out-dir lib --stage 0",
"clean": "rimraf lib",
"lint": "lintspaces -e .editorconfig src/*",
"hint": "jsxhint src/*",
"prepublish": "npm run lint && npm run hint && npm run build"
}
}