-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
38 lines (38 loc) · 1.27 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": "svgobjectmodelgenerator",
"version": "0.0.1",
"description": "An abstract SVG renderer",
"main": "main.js",
"generator-core-version": "~3",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/adobe-research/svgObjectModelGenerator.git"
},
"dependencies": {
"tmp": "~0.0.24"
},
"devDependencies": {
"mocha": "^1.20.1",
"chai": "^1.9.1",
"sinon": "^1.10.2",
"q": "~1.0",
"blanket": "*",
"travis-cov": "^0.2.5"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/*test.js --require tests/config/chai.js",
"test-debug": "./node_modules/.bin/mocha tests/*test.js --require tests/config/chai.js --reporter nyan --debug-brk",
"cover": "./node_modules/.bin/mocha tests/*test.js -r blanket tests/config/chai.js -R html-cov > svgomg-code-coverage.html",
"cover-travis": "./node_modules/.bin/mocha tests/*test.js -r blanket tests/config/chai.js -R travis-cov"
},
"config": {
"blanket": {
"pattern": [""],
"data-cover-never": ["node_modules", "tests/config", "tests/data", "tests"]
},
"travis-cov": {
"threshold": "85"
}
}
}