-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 893 Bytes
/
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
{
"name": "xsltproc",
"version": "0.0.4",
"description": "Wrapper for xsltproc.",
"homepage": "https://github.com/ilyar/xsltproc",
"bugs": "https://github.com/ilyar/xsltproc/issues",
"author": {
"name": "Ilya Rogov",
"email": "ilyar.software@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ilyar/xsltproc"
},
"license": "MIT",
"main": "lib/xsltproc.js",
"scripts": {
"lint": "jshint",
"test-functional": "nyc --reporter=html --reporter=text mocha",
"test-ci": "npm run lint && nyc --reporter=text-lcov mocha > test/lcov.info",
"test": "npm run lint && npm run test-functional"
},
"engines": {
"node": ">=4"
},
"dependencies": {
"which": "^1.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"jshint": "^2.9.5",
"mocha": "^4.0.1",
"nyc": "^11.2.1"
}
}