-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
49
50
51
52
53
{
"name": "produce",
"version": "0.4.1",
"description": "A multi-rule multi-purpose source/target agnostic configurable transformer",
"main": "index.js",
"directories": {
"test": "test"
},
"bin": "cli.js",
"engines": {
"node": ">=4"
},
"scripts": {
"pretest": "standard --verbose && jshint --verbose --exclude-path .gitignore .",
"test": "nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etabits/node-produce.git"
},
"keywords": [
"produce"
],
"author": "Hasan Arous <arous.hasan@gmail.com> (http://www.etabits.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/etabits/node-produce/issues"
},
"homepage": "https://github.com/etabits/node-produce#readme",
"devDependencies": {
"ava": "^0.18.1",
"coveralls": "^2.11.15",
"jshint": "^2.9.4",
"nyc": "^10.1.2",
"standard": "^8.6.0"
},
"jshintConfig": {
"asi": true,
"esversion": 6,
"strict": true,
"node": true
},
"dependencies": {
"line": "git+https://github.com/etabits/node-line.git"
},
"nyc": {
"reporter": [
"lcov",
"text"
]
}
}