-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "pvectorjs",
"version": "2.0.8",
"description": "A JavaScript 2D/3D vector class with chainable methods for common vector operations based on Processing PVector class",
"keywords": [
"vector",
"2d",
"3d"
],
"homepage": "http://github.com/makio135/pvectorjs",
"author": "Lionel Radisson @makio135 (http://makio135.com/)",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/makio135/pvectorjs.git"
},
"scripts": {
"build": "(browserify index.js --standalone PVector) > build/pvector.js",
"minify": "minify build/pvector.js > build/pvector.min.js",
"test": "mocha --ui bdd --reporter spec",
"watch-test": "onchange 'test/pvector.js' -- npm run test",
"make": "npm run build && npm run minify && npm run test",
"watch": "onchange 'index.js' -- npm run make"
},
"devDependencies": {
"browserify": "^16.5.0",
"chai": "^4.2.0",
"minify": "^7.1.0",
"mocha": "^7.1.1",
"onchange": "^6.1.0"
},
"bugs": {
"url": "https://github.com/makio135/pvectorjs/issues"
},
"directories": {
"test": "test"
}
}