-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
64 lines (64 loc) · 1.56 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
{
"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')' */'",
"watch":"./node_modules/.bin/watch 'npm run bundle' ./src"
},
"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",
"watch": "^0.19.2"
}
}