-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 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
{
"name": "amd-inject-loader",
"version": "0.5.0",
"description": "A simple webpack inject loader for AMD-style code",
"main": "index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "mocha spec/spec.js",
"coverage": "istanbul cover -x \"spec/**\" _mocha -- spec/spec.js",
"show-coverage": "open coverage/lcov-report/index.html",
"test-ci": "mocha -w spec/spec.js"
},
"repository": {
"type": "git",
"url": "[email protected]:LeanKit-Labs/amd-inject-loader.git"
},
"keywords": [
"webpack",
"loader"
],
"author": "Doug Neiner <[email protected]>",
"contributors": [
{
"name": "Doug Neiner",
"email": "[email protected]",
"url": "http://code.dougneiner.com"
},
{
"name": "Ryan Niemeyer",
"email": "[email protected]",
"url": "http://knockmeout.net"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/LeanKit-Labs/amd-inject-loader/issues"
},
"homepage": "https://github.com/LeanKit-Labs/amd-inject-loader",
"devDependencies": {
"enhanced-require": "^0.4.2",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"should": "^4.6.1",
"sinon": "^1.12.2"
}
}