forked from playproject-ui/ui-components
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
50
51
{
"name": "ui-components",
"version": "0.0.2-pre-alpha",
"description": "An app for debuging and testing website's theme. It is a simple app that allows you to change the theme of a website and see the changes in real time. It has 4 components: action-bar(action-wizard),graph-explorer,tabbed-editor,action-history",
"homepage": "https://github.com/ddroid/ui-components#readme",
"bugs": {
"url": "https://github.com/ddroid/ui-components/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddroid/ui-components.git"
},
"license": "ISC",
"author": "Ahmad Munir",
"type": "commonjs",
"main": "src/index.js",
"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 --fix",
"test": "vitest run"
},
"devDependencies": {
"browserify": "^17.0.1",
"budo": "^11.8.4",
"standardx": "^7.0.0",
"vitest": "^1.2.0"
},
"eslintConfig": {
"env": {
"browser": true
},
"rules": {
"camelcase": 0,
"indent": [
"error",
2
]
}
},
"standardx": {
"ignore": [
"**/node_modules/**",
"**/bundle.js",
"!**/src/node_modules/**"
]
},
"dependencies": {
"graph-explorer": "github:ddroid/graph-explorer"
}
}