-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (38 loc) · 929 Bytes
/
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
{
"name": "generative-sketches",
"version": "0.0.1",
"description": "generative art sketches using canvas-sketch",
"main": "lib/index.js",
"scripts": {
"build-clean": "rm -rf lib; npm run build",
"build": "tsc",
"test": "./node_modules/.bin/jest",
"format": "./node_modules/.bin/prettier --write '**/*.[tj]s'",
"sketch": "canvas-sketch",
"parcel": "parcel"
},
"author": "github@floodfx.com",
"license": "ISC",
"devDependencies": {
"@types/chroma-js": "^1.4.3",
"@types/jest": "^24.0.20",
"@types/node": "^12.11.7",
"@types/p5": "^0.9.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"parcel": "^2.0.1",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"ts-node": "^5.0.1",
"typescript": "^3.6.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"p5": "^1.4.0",
"chroma-js": "^2.1.2"
}
}