forked from transitive-bullshit/primitive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.03 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
74
75
76
77
78
79
80
{
"name": "primitive",
"version": "1.0.1",
"description": "Reproduce images from geometric primitives.",
"main": "main.js",
"module": "module.js",
"browser": "dist/browser.js",
"repository": "transitive-bullshit/primitive",
"author": "Travis Fischer <[email protected]>",
"license": "MIT",
"scripts": {
"docs": "yarn run docs-node && yarn run docs-browser",
"docs-node": "update-markdown-jsdoc --no-markdown-toc --shallow -f index.js -s 'Node API'",
"docs-browser": "update-markdown-jsdoc --no-markdown-toc --shallow -f browser.js -s 'Browser API'",
"build": "yarn run clean && rollup -c",
"start": "yarn run clean && rollup -c -w",
"clean": "del dist",
"prepublishOnly": "yarn run build",
"test": "ava -v && standard"
},
"engines": {
"node": ">=8"
},
"keywords": [
"primitive",
"primitive.js",
"primitivejs",
"primitive-js",
"geometric",
"canvas",
"manipulation",
"art",
"image",
"images",
"simplify",
"sqip",
"lqip",
"geometrize",
"genetic"
],
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"del-cli": "^1.1.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"standard": "^11.0.0",
"update-markdown-jsdoc": "^1.0.6"
},
"dependencies": {
"chromatism": "^3.0.0",
"esm": "^3.0.45",
"execa": "^0.10.0",
"get-pixels": "^3.3.0",
"ndarray": "^1.0.18",
"ow": "^0.4.0",
"pify": "^3.0.0",
"pump-promise": "^1.0.0",
"raf": "^3.4.0",
"random": "^2.0.12",
"random-int": "^1.0.0",
"random-normal": "^1.0.0",
"rmfr": "^2.0.0",
"save-pixels": "^2.3.4",
"tempy": "^0.2.1",
"time-diff": "^0.3.1"
},
"ava": {
"require": [
"esm"
]
}
}