-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "leinwand",
"version": "0.6.0",
"description": "Method chaining for the canvas 2d api",
"main": "index.js",
"scripts": {
"test": "node test/test.js",
"test-coveralls": "istanbul cover test/test.js && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"lint": "jshint test/* index.js",
"test-beefy": "beefy test/beefy.js -v",
"test-beefy-live": "beefy test/beefy.js --cwd test -v --live",
"coverage": "rm -rf coverage && istanbul cover test/test.js && istanbul report html && serve coverage",
"format": "js-beautify -s=2 -r -f *.js test/*.js",
"check": "npm run format && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/tillarnold/leinwand"
},
"keywords": [],
"author": "Till Arnold",
"license": "MIT",
"devDependencies": {
"beefy": "^2.1.8",
"coveralls": "^3.0.9",
"istanbul": "~0.4.5",
"js-beautify": "^1.10.3",
"jshint": "^2.11.0",
"serve": "^11.3.0",
"tape": "^4.13.0",
"watchify": "^3.11.1"
}
}