forked from playproject-ui/graph-explorer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.15 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
44
45
46
47
48
49
{
"name": "graph-explorer",
"version": "1.0.0",
"description": "a hierarchical file tree explorer, but with the ability to not just expand sub entries, but also multiple super entries",
"main": "lib/graph_explorer.js",
"directories": {
"lib": "lib"
},
"scripts": {
"start": "budo web/page.js:bundle.js --dir . --live --open -- -i STATE",
"build": "browserify web/page.js -i STATE -o bundle.js",
"lint": "standardx",
"lint:fix": "standardx --fix"
},
"devDependencies": {
"browserify": "^17.0.1",
"budo": "^11.8.4",
"standardx": "^7.0.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"rules": {
"camelcase": 0,
"indent": [
"error",
2
]
},
"ignorePatterns": [
"lib/STATE.js",
"bundle.js",
"node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddroid/graph-explorer.git"
},
"keywords": [],
"author": "ddroid",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/ddroid/graph-explorer/issues"
},
"homepage": "https://github.com/ddroid/graph-explorer#readme"
}