-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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
{
"name": "u5-domain",
"version": "0.0.7",
"description": "Describe a domain, deduce useful artefacts from it",
"main": "lib/index.js",
"engines": {
"node": "~6"
},
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"build:watch": "npm run build -- --watch",
"prepublish": "npm run clean && npm run build",
"clean": "rimraf lib",
"test:watch": "npm run test -- --watch",
"test": "mocha --compilers js:babel-register --recursive --delay --require ./test/setup.js --full-trace"
},
"author": "Chris Oloff <chris@uber5.com> (http://about.uber5.com/)",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.10.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"expect": "1.20.2",
"graphql": "0.6.0",
"mocha": "2.5.3",
"mongodb": "2.1.18",
"pow-mongodb-fixtures": "0.13.0",
"rimraf": "2.5.2",
"source-map-support": "0.4.1",
"underscore": "1.8.3"
},
"dependencies": {
"babel-polyfill": "6.9.1",
"camelcase": "3.0.0",
"debug": "2.2.0",
"invariant": "2.2.1",
"jsonschema": "1.1.0",
"pluralize": "3.0.0"
},
"files": [
"lib"
]
}