-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 998 Bytes
/
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
{
"name": "kevoree-entities",
"version": "9.2.0",
"description": "Kevoree Entities - Set of abstract Kevoree entities (group, node, channel, component)",
"author": "Maxime Tricoire <max.tricoire@gmail.com>",
"main": "./kevoree-entities.js",
"typings": "kevoree-entities.d.ts",
"scripts": {
"prepublish": "npm run lint",
"lint": "eslint kevoree-entities.js lib"
},
"keywords": [
"kevoree",
"api",
"component",
"channel",
"group",
"node"
],
"contributors": [],
"bugs": {
"url": "https://github.com/kevoree/kevoree-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kevoree/kevoree-js"
},
"devDependencies": {
"eslint": "^3.12.2"
},
"optionalDependencies": {},
"dependencies": {
"kevoree-commons": "^3.0.0",
"kevoree-library": "^5.0.10",
"pseudoclass": "^1.0.2"
},
"license": "LGPL-3.0",
"eslintConfig": {
"env": {
"node": true
},
"extends": ["eslint:recommended"]
}
}