-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.01 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": "reign",
"version": "0.1.0",
"description": "A persistent, typed-objects implementation.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"babel-polyfill": "^6.7.2",
"babel-runtime": "^6.6.1",
"bluebird": "^3.3.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.1",
"type-registry": "0.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.2",
"babel-plugin-contracts": "^1.1.1",
"babel-plugin-trace": "^1.0.0",
"babel-plugin-transform-async-to-module-method": "^6.7.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"backing": "^0.2.0",
"flow-bin": "^0.22.0",
"isparta": "^4.0.0",
"mocha": "^2.3.3",
"should": "^7.1.1"
},
"scripts": {
"prepublish": "NODE_ENV=production npm run build && npm test && npm run examples",
"test": "flow check && mocha --max-old-space-size=8192 --expose-gc",
"watch": "mocha --watch --max-old-space-size=8192 --expose-gc",
"examples": "node ./examples/counter.js && node ./examples/linked-list.js && node ./examples/simple.js && node ./examples/users-and-roles.js",
"build": "babel -d ./lib ./src && npm run build-legacy",
"build-legacy": "NODE_ENV=legacy babel -d ./lib-legacy ./src",
"coverage": "NODE_ENV=coverage babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- --reporter dot --bail",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codemix/reign.git"
},
"keywords": [
"realm",
"reign",
"domain",
"type",
"types",
"type system",
"type registry",
"static typing"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/reign/issues"
},
"homepage": "https://github.com/codemix/reign#readme"
}