-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "viewbox",
"version": "1.0.0",
"description": "Library for dealing with SVG viewboxes as plain arrays",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint *.js",
"test": "istanbul cover _mocha",
"posttest": "npm run lint",
"doc": "mocha --reporter markdown > API.md",
"preversion": "npm run doc && git add API.md",
"test:watch": "mocha --reporter dot --watch",
"test:browser": "zuul --local -- test.js",
"test:sauce": "zuul -- test.js",
"ci": "npm test && if [ \"${TEST_BROWSERS}\" = \"true\" ]; then npm run ci:browser; fi",
"ci:browser": "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then npm run test:sauce; fi",
"postci": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git://github.com/tracespace/viewbox.git"
},
"keywords": [
"svg",
"viewbox",
"geometry"
],
"contributors": [
"Mike Cousins <mike@cousins.io> (http://cousins.io/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tracespace/viewbox/issues"
},
"homepage": "https://github.com/tracespace/viewbox",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"zuul": "^3.10.1"
},
"dependencies": {}
}