-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "assemblage-algorithm",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"author": "dreerr",
"license": "All rights reserved, like Hollywood 👓",
"type": "module",
"scripts": {
"dev": "export NODE_ENV=development && nodemon ./src/index.js",
"start": "export NODE_ENV=production && node ./src/index.js",
"lint": "prettier --write ./; ./node_modules/.bin/eslint ./ --ext .js",
"test": "mocha",
"build": "nexe --build -i src/cli.js -r ./lib/* -o ./dist/assemblage"
},
"bin": {
"assemblage": "./src/cli.js"
},
"dependencies": {
"@svgdotjs/svg.filter.js": "^3.0.8",
"@svgdotjs/svg.js": "^3.1.1",
"canvas": "^2.8.0",
"childprocess-queue": "^1.0.2",
"commander": "^8.3.0",
"colors": "^1.4.0",
"fs": "^0.0.1-security",
"glob": "^7.2.0",
"natsort": "^2.0.3",
"potrace-wasm": "^1.0.4",
"rgbquant": "^1.1.2",
"seedrandom": "^3.0.5",
"svgdom": "^0.1.10",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"fs-extra": "^10.0.0",
"mocha": "^9.1.3",
"nexe": "^4.0.0-beta.19",
"nodemon": "^2.0.15",
"prettier": "2.5.1"
}
}