-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
52 lines (52 loc) · 1.3 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
{
"name": "chickenpaint",
"main": "js/ChickenPaint.js",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/thenickdude/chickenpaint.git"
},
"version": "0.4.1",
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.8",
"@babel/register": "^7.16.9",
"autoprefixer": "^10.4.2",
"babel-plugin-add-module-exports": "^1.0.4",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"canvas": "^2.7.0",
"exorcist": "^2.0.0",
"icomoon-build": "^0.2.8",
"mocha": "^9.1.4",
"multipipe": "^2.0.3",
"node-png": "^0.4.3",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"sass": "^1.49.0",
"serve": "^14.1.2",
"uglify-js": "=3.4.8"
},
"scripts": {
"start": "serve",
"test": "babel-node node_modules/.bin/_mocha -- test/*.js",
"prepare": "make all min"
},
"type": "module",
"dependencies": {
"bootstrap": "^4.6.1",
"core-js": "^3.20.3",
"file-saver": "^2.0.5",
"jquery": "^3.6.0",
"pako": "^1.0.11",
"pepjs": "=0.4.3",
"popper.js": "^1.15.0",
"random-js": "^2.1.0",
"wolfy87-eventemitter": "^5.2.9"
},
"browser": {
"./js/util/Canvas.js": "./js/browser/util/Canvas.js"
}
}