-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 870 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
37
38
39
40
{
"name": "file-emitter",
"version": "2.0.0",
"description": "A recursive file emitter",
"keywords": [
"file",
"emitter",
"recursive",
"incremental"
],
"license": "MIT",
"author": {
"name": "Malte-Thorben Bruns",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/skenqbx/file-emitter.git"
},
"dependencies": {
"minimatch": "2.0.8"
},
"optionalDependencies": {},
"devDependencies": {
"eslint": "0.22.1",
"istanbul": "0.3.14",
"mocha": "2.2.5",
"next-update": "0.7.6"
},
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && istanbul cover _mocha -- ./test",
"update": "next-update -k",
"clean": "rm -rf node_modules/ && rm -rf coverage/ && rm npm-debug.log"
},
"engines": {
"node": ">=0.10",
"npm": "~2.7.5"
}
}