-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 874 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 874 Bytes
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
{
"name": "karma-requirejs-demo",
"version": "1.0.0",
"description": "A demo for Karma + ChromeHeadless + Mocha + Chai + RequireJS",
"main": "index.js",
"scripts": {
"test": "npm install && ./node_modules/karma/bin/karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blacktail/karma-requirejs-demo.git"
},
"author": "percy.zhang@logicmonitor.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/blacktail/karma-requirejs-demo/issues"
},
"homepage": "https://github.com/blacktail/karma-requirejs-demo#readme",
"devDependencies": {
"chai": "^4.1.2",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-requirejs": "^1.1.0",
"mocha": "^4.0.1"
},
"dependencies": {
"requirejs": "^2.3.5"
}
}