-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
68 lines (68 loc) · 2.45 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
{
"name": "lindenmayer",
"description": "Lindenmayer is a L-System/LSystem library using modern (ES6) JavaScript with focus on a concise syntax. The idea is to have a very powerful but simple base functionality, that can handle most use-cases by simply allowing anonymous functions as productions, which makes it very flexible in comparison to classic L-Systems.",
"version": "1.5.4",
"author": "Tom Brewe <[email protected]>",
"license": "MIT",
"keywords": [
"L-System",
"LSystem",
"turtle",
"graphics",
"fractal"
],
"homepage": "https://github.com/nylki/lindenmayer",
"bugs": {
"url": "https://github.com/nylki/lindenmayer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylki/lindenmayer.git"
},
"main": "dist/lindenmayer.js",
"module": "dist/lindenmayer.esm.js",
"jsnext:main": "dist/lindenmayer.esm.js",
"browser": "dist/lindenmayer.browser.js",
"files": [
"dist/lindenmayer.browser.js",
"dist/lindenmayer.esm.js",
"dist/lindenmayer.js",
"README.md",
"LICENSE"
],
"directories": {
"docs": "docs",
"lib": "dist",
"example": "docs/examples",
"test": "test"
},
"scripts": {
"test": "npm run build && mocha test/tests.js",
"test-stochastic": "npm run build && mocha test/additional_tests/stochastic_tests.js",
"benchmarks": "node test/additional_tests/benchmarks.js",
"build": "npm-run-all --sequential build-all copy-build-to-examples",
"copy-build-to-examples": "cp dist/lindenmayer.browser.js docs/examples/lindenmayer.js",
"build-all": "npm-run-all --parallel build-esm build-umd build-browser",
"build-esm": "rollup -c rollup.esm.config.js && rollup --environment minify -c rollup.esm.config.js",
"build-umd": "rollup -c rollup.umd.config.js && rollup --environment minify -c rollup.umd.config.js",
"build-browser": "rollup -c rollup.browser.config.js && rollup --environment minify -c rollup.browser.config.js",
"prepublish": "npm test"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-for-of": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"expect": "^24.8.0",
"marky": "^1.2.1",
"mocha": "^6.2.3",
"npm-run-all": "^4.1.5",
"rollup": "^2.15.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {}
}