-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
54
55
56
57
58
{
"name": "pluto-path",
"version": "1.2.0",
"description": "Create a Pluto dependency injection module from files in a path or paths",
"main": "lib/index.js",
"scripts": {
"test": "nyc ava --verbose",
"autotest": "ava --verbose --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"engines": {
"node": ">=6.0.0"
},
"homepage": "https://github.com/ecowden/pluto-path",
"repository": {
"type": "git",
"url": "git://github.com/ecowden/pluto-path.git"
},
"keywords": [
"pluto",
"dependency",
"injection",
"di",
"dependency injection",
"testing"
],
"author": "Evan Cowden <evan38109@gmail.com>",
"license": "MIT",
"ava": {
"timeout": "1m",
"files": [
"lib/**/*Spec.js",
"*Spec.js"
],
"babel": {
"presets": [
"es2015-node6"
]
}
},
"dependencies": {
"co": "^4.6.0",
"lodash": "^4.17.4",
"@ecowden/pluto": "^1.0.0",
"require-path": "^0.3.0"
},
"devDependencies": {
"ava": "^0.18.0",
"babel-preset-es2015-node6": "^0.4.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.1.2"
}
}