-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "u5-derive",
"version": "0.3.3",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "supervisor -w ./src -- -r 'babel-register' src ./sample-domains/things.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "npm run test -- --coverage",
"build": "babel src --out-dir dist --source-maps --ignore \"**/__tests__/*.js\"",
"prepublish": "npm run clean && npm test && mkdir -p dist && npm run build && npm run doc && flow-copy-source src dist",
"clean": "rimraf dist",
"doc": "echo 'documentation disabled for now' ; exit 0",
"sample:simple": "node -r 'babel-register' ./samples/simple/index.js",
"sample:clubs": "node -r 'babel-register' ./samples/clubs/index.js"
},
"author": "Chris Oloff <chris@uber5.com> (http://about.uber5.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/Uber5/u5-derive.git"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-flow-strip-types": "^7.2.3",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"babel-jest": "^24.0.0",
"documentation": "^8.0.2",
"flow-bin": "0.58.0",
"flow-copy-source": "^2.0.2",
"jest": "^24.0.0",
"mongodb": "^3.3.3",
"regenerator-runtime": "0.11.0",
"rimraf": "2.6.2",
"source-map-support": "0.5.0",
"supervisor": "0.12.0"
},
"peerDependencies": {
"mongodb": "^3"
},
"dependencies": {
"dataloader": "1.3.0",
"debug": "2 || 3",
"derivable": "0.12.1",
"invariant": "2.2.2",
"ramda": ">= 0.23",
"repl-promised": "0.1.0",
"u5-mongo-oplog": "^1.0.0"
},
"jest": {
"testURL": "http://localhost"
}
}