-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.22 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": "@ecowden/pluto",
"version": "1.1.0",
"description": "Dependency injection that's so small, it almost doesn't count.",
"homepage": "https://github.com/ecowden/pluto.js",
"keywords": [
"dependency",
"injection",
"di",
"dependency injection",
"testing"
],
"author": "Evan Cowden <evan38109@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ecowden/pluto.js.git"
},
"main": "lib/pluto.js",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"co": "^4.6.0",
"lodash.memoize": "^4.1.2"
},
"devDependencies": {
"ava": "^0.17.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"
},
"scripts": {
"test": "nyc ava --verbose",
"autotest": "ava --watch",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"ava": {
"timeout": "1m",
"files": [
"lib/**/*Spec.js",
"*Spec.js"
],
"source": [
"**/*.{js,jsx}"
],
"babel": {
"presets": [
"es2015-node6"
]
}
}
}