-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "g.js",
"version": "0.1.17",
"description": "Graphic Objects Library",
"type": "module",
"main": "src/g.js",
"scripts": {
"build": "node scripts/build.mjs",
"test": "mocha --recursive && jshint .",
"watchify": "mkdir -p build && watchify src/g.js --standalone g --debug -o build/g.js -v",
"browserify": "browserify src/g.js --standalone g > dist/g.js",
"uglify": "browserify src/g.js --standalone g -g uglifyify > dist/g.min.js",
"dist": "npm run test && npm run browserify && npm run uglify"
},
"repository": {
"type": "git",
"url": "https://github.com/nodebox/g.js.git"
},
"keywords": [
"vector",
"graphics",
"canvas",
"image",
"pixels",
"2d"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodebox/g.js/issues"
},
"homepage": "https://github.com/nodebox/g.js",
"dependencies": {
"@xmldom/xmldom": "0.8.7",
"async-es": "3.2.4",
"js-clipper": "1.0.1",
"lodash.groupby": "^4.6.0",
"lodash.values": "^4.3.0",
"stackblur": "^1.0.0"
},
"devDependencies": {
"esbuild": "0.17.15",
"mocha": "^9.0.2"
}
}