-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 841 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
41
42
43
44
45
{
"name": "fake-module-system",
"version": "0.3.0",
"description": "A mock module system for testing require extensions",
"license": "MIT",
"repository": "jamestalmage/fake-module-system",
"author": {
"name": "James Talmage",
"email": "[email protected]",
"url": "github.com/jamestalmage"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && nyc --reporter=lcov --reporter=text ava"
},
"files": [
"index.js"
],
"keywords": [
"require",
"extension",
"transform",
"testing",
"mock",
"hook",
"transpile",
"module"
],
"dependencies": {
"match-require": "^1.1.1"
},
"devDependencies": {
"ava": "^0.14.0",
"coveralls": "^2.11.4",
"nyc": "^6.2.1",
"xo": "^0.13.0"
},
"xo": {
"ignores": [
"test.js"
]
}
}