-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "mocha-exports-amd",
"version": "1.1.1-in-progress.30",
"description": "AMD loader plugin to run Mocha tests with module exports interface in browser",
"main": "mochaExport.js",
"directories": {
"example": "example",
"test": "test"
},
"peerDependencies": {
"mocha": ">=1.2.1"
},
"devDependencies": {
"amdefine": "1.0.1",
"karma": "1.3.0",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "1.2.0",
"karma-requirejs": "1.1.0",
"karma-spec-reporter": "0.0.26",
"mocha": "3.1.2",
"requirejs": "2.3.2",
"requirejs-domready": "2.0.3"
},
"scripts": {
"example": "npm run example-cli && npm run example-browser",
"example-browser": "karma start",
"example-cli": "npm run example-shim && npm run example-amdefine-intercept",
"example-shim": "mocha example/*.test.js example/*.test.ie8.js",
"example-amdefine-intercept": "mocha --require amdefine/intercept example/*.test.noShim.js",
"test": "npm run test-cli && npm run test-browser",
"test-cli": "mocha test/cliCompatibility.js",
"test-browser": "karma start test/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/scottfreecode/mocha-exports-amd.git"
},
"keywords": [
"Mocha",
"testing",
"AMD",
"plugin",
"loader-plugin",
"AMD-loader-plugin",
"AMD-plugin",
"module",
"exports",
"exports-interface",
"module-exports-interface"
],
"author": "ScottFreeCode",
"license": "AFL-3.0",
"bugs": {
"url": "https://github.com/scottfreecode/mocha-exports-amd/issues"
},
"homepage": "https://github.com/scottfreecode/mocha-exports-amd#readme"
}