forked from quinton-ashley/p5play
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "p5.play",
"version": "1.0.0",
"description": "A p5.js library for the creation of games and playthings.",
"dependencies": {},
"devDependencies": {
"eslint": "^3.1.0",
"http-server": "^0.9.0",
"mocha-phantomjs": "^4.0.1",
"p5": "0.5 - 0.5.2 || 0.5.4",
"yuidocjs": "^0.10.0"
},
"engines": {
"node" : ">=4.0.0"
},
"scripts": {
"docs": "yuidoc .",
"lint": "eslint lib/** test/unit/** examples/*.js",
"lint:examples": "eslint examples/*.js",
"lint:lib": "eslint lib/**",
"lint:test": "eslint test/unit/**",
"copy:p5": "cp -f `npm root`/p5/lib/p5.js examples/lib/p5.js",
"start": "http-server -o",
"postinstall": "npm run copy:p5 && npm run docs",
"pretest": "npm run lint",
"test": "mocha-phantomjs test/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/molleindustria/p5.play.git"
},
"author": "Paolo Pedercini <[email protected]>",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/molleindustria/p5.play/issues"
},
"homepage": "https://github.com/molleindustria/p5.play#readme"
}