-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.77 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
65
66
67
68
69
70
71
72
73
{
"name": "modeljs",
"version": "0.0.0",
"description": "Domain driven designed base models with flowtype support",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint .",
"flow": "flow",
"flow:update": "flow-typed install --overwrite",
"lint": "npm -s run eslint && npm -s run flow",
"tests": "mocha --compilers js:babel-core/register",
"test": "npm -s run tests",
"pretest": "npm -s run lint",
"debug": "node debug -r babel-core/register",
"start": "node -r babel-core/register lib/index.js",
"compile": "babel -d dist lib",
"gen-docs": "documentation build -f md lib > API.md",
"prepublish": "npm run compile && npm run gen-docs",
"release": "np"
},
"author": "Jaka Hudoklin <jakahudoklin@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"engineStrict": true,
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-comments": "^6.17.0",
"chai": "^3.5.0",
"documentation": "^4.0.0-beta15",
"eslint": "^3.10.2",
"eslint-config-xo": "^0.17.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-mocha": "^4.7.0",
"flow-bin": "^0.35.0",
"flow-typed": "^2.0.0",
"mocha": "^3.1.2",
"np": "^2.10.1"
},
"eslintConfig": {
"extends": [
"xo/esnext",
"plugin:flowtype/recommended"
],
"plugins": [
"flowtype",
"mocha"
],
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"mocha/no-exclusive-tests": "error"
}
},
"babel": {
"plugins": [
"transform-flow-comments"
],
"sourceMaps": false
},
"dependencies": {
"immutable": "^3.8.1",
"joi": "^10.1.0",
"lodash": "^4.17.3"
}
}