-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.48 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
{
"name": "kevoree-node-javascript",
"version": "5.5.0-alpha.2",
"main": "./lib/JavascriptNode.js",
"kevoree": {
"namespace": "kevoree"
},
"scripts": {
"prepublish": "eslint lib browser.js test && grunt",
"postpublish": "grunt publish"
},
"description": "Kevoree JS standard node platform",
"keywords": [
"kevoree-std-lib",
"kevoree",
"library",
"node"
],
"author": "Maxime Tricoire <[email protected]>",
"bugs": {
"url": "https://github.com/kevoree/kevoree-js-node-javascript/issues"
},
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/kevoree/kevoree-js-node-javascript"
},
"dependencies": {
"kevoree-commons": "^3.0.0",
"kevoree-entities": "^9.2.0",
"kevoree-library": "^5.0.10",
"times-up": "^1.0.1"
},
"devDependencies": {
"eslint": "^3.18.0",
"expect": "^1.20.2",
"grunt": "^1.0.1",
"grunt-kevoree": "^6.0.0-alpha",
"grunt-kevoree-genmodel": "^3.0.2",
"grunt-kevoree-registry": "^4.0.0-alpha",
"grunt-webpack": "^2.0.1",
"json-loader": "^0.5.4",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.2.0",
"webpack": "^2.3.1",
"webpack-dev-server": "^2.4.2",
"wrapper-webpack-plugin": "^0.1.11"
},
"optionalDependencies": {},
"engines": {
"node": "*"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-shadow": 2
}
}
}