-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 786 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 786 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
{
"name": "js-assesment",
"description": "Fork 'away' of Rebecca Murphey's js-assessment",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"karma-phantomjs-launcher": "~0.1.4",
"karma": "~0.12.16",
"karma-coverage": "~0.2.4",
"karma-jasmine": "~0.1.5",
"karma-spec-reporter": "0.0.13"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/it-crowd/js-assessment.git"
},
"scripts": {
"start": "node_modules/karma/bin/karma start test/karma.conf.js",
"test": "node_modules/karma/bin/karma start test/karma.conf.js --singleRun true"
}
}