-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "xeno-compiler",
"description": "compile compose to JSON",
"keywords": [
"xeno",
"compiler"
],
"version": "0.4.0",
"license": "MIT",
"author": "Peter Elger (http://nearform.com/)",
"contributors": [
"Peter Elger <[email protected]> (http://peterelger.com/)",
"Matteo Collina <[email protected]>"
],
"main": "./main.js",
"engines": {
"node": "*"
},
"dependencies": {
"async": "^0.9.0",
"crc": "^3.0.0",
"glob": "^7.0.5",
"lodash": "^2.4.1",
"traverse": "^0.6.6"
},
"repository": {
"type": "git",
"url": "https://github.com/apparatus/xeno-compiler"
},
"scripts": {
"lint": "jshint **/*.js",
"test": "jshint **/*.js && node test/*Test.js",
"coverage": "istanbul cover test/*Test.js && open ./coverage/lcov-report/index.html",
"coverage-check": "istanbul cover test/*Test.js && istanbul check-coverage",
"commit-check": "jshint **/*.js && istanbul cover test/*Test.js && istanbul check-coverage"
},
"pre-commit": [
"commit-check"
],
"devDependencies": {
"istanbul": "^0.4.0",
"jshint": "^2.8.0",
"pre-commit": "^1.1.1",
"tape": "^4.2.0"
}
}