-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.04 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
{
"//": "--------------- Script Info --------------- ",
"name": "guify",
"author": "Jonathan Cole <[email protected]>",
"version": "0.15.1",
"description": "A simple GUI for inspecting and changing JS variables",
"keywords": [
"gui",
"ui",
"inspect",
"inspector",
"bind",
"binding",
"project",
"creative coding",
"p5",
"three"
],
"repository": {
"type": "git",
"url": "git+https://github.com/colejd/guify.git"
},
"bugs": {
"url": "https://github.com/colejd/guify/issues"
},
"homepage": "https://github.com/colejd/guify#readme",
"license": "MIT",
"main": "lib/guify.min.js",
"scripts": {
"build:prod": "webpack --mode=production",
"build:dev": "webpack --mode=development --progress",
"buildall": "npm-run-all build:prod build:dev",
"build:dev:watch": "webpack --mode=development --progress --watch",
"serve": "webpack serve --mode=development",
"develop": "npm-run-all --parallel build:dev:watch serve",
"test": "mocha --require @babel/register --colors ./test/*.spec.js",
"prepublish": "npm run-script buildall",
"ci": "npm run-script buildall",
"lint": "eslint ."
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.16.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"css-loader": "^6.5.1",
"eslint": "^8.2.0",
"eslint-webpack-plugin": "^3.1.0",
"mocha": "^9.1.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^7.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.63.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"dom-css": "^2.1.0",
"is-numeric": "0.0.5",
"is-string": "^1.0.4",
"param-case": "^2.1.1",
"screenfull": "^5.0.0",
"simple-color-picker": "^1.0.5",
"tinycolor2": "^1.4.1",
"uuid": "^3.4.0",
"wolfy87-eventemitter": "^5.2.2"
}
}