-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "basiljs",
"version": "1.1.0",
"description": "An attempt to port the spirit of the Processing visualization language to Adobe InDesign.",
"main": "basil.js",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "./node_modules/.bin/exsbundlr -i src/main.js -o basil.js",
"release": "./node_modules/.bin/exsbundlr -i src/main.js -o basil.js -p '/* Basil.js v'${npm_package_version}' '$(date '+%Y.%m.%d-%H:%M:%S')' */' && npm run docs-json",
"watch": "./node_modules/.bin/watch 'npm run bundle' ./src",
"docs:watch": "npm run watch",
"docs:build": "chokidar ./basil.js -c './node_modules/.bin/documentation build ./basil.js -f html -o tmp/' ",
"predocs": "mkdir -p tmp/",
"docs:serve": "reload --dir ./tmp -p 3000 -b",
"docs": "npm-run-all --parallel docs:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basiljs/basil.js.git"
},
"keywords": [
"Basil.js",
"InDesign",
"Processing"
],
"contributors": [
{
"name": "Ted Davis",
"url": "http://teddavis.org"
},
{
"name": "Benedikt Groß",
"url": "http://benedikt-gross.de"
},
{
"name": "Ludwig Zeller",
"url": "http://ludwigzeller.de"
},
{
"name": "Philipp Adrian",
"url": "http://www.philippadrian.com/"
},
{
"name": "be:screen GmbH",
"url": "http://bescreen.de"
},
{
"name": "Stefan Landsbek",
"url": "http://47nord.de"
},
{
"name": "Ken Frederick",
"url": "http://kennethfrederick.de/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/basiljs/basil.js/issues"
},
"homepage": "http://basiljs.ch/",
"devDependencies": {
"extendscript-bundlr": "^0.3.0",
"npm-run-all": "^4.1.5",
"reload": "^3.0.4",
"watch": "^0.19.2"
},
"dependencies": {
"chokidar-cli": "^2.1.0",
"documentation": "^12.1.4"
}
}