-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 878 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
{
"name": "cs_drawing_program",
"version": "1.0.0",
"description": "Credit Suisse interview - first round assignment",
"main": "main.js",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha \"./app/**/*.test.js\"",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- \"./app/**/*.test.js\""
},
"dependencies": {
"deferred": "^0.7.8"
},
"devDependencies": {
"chai": "^4.1.1",
"chai-spies": "^0.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"mock-console": "0.0.1",
"mock-stdin": "^0.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/6finger/cs_drawing_program.git"
},
"author": "Simon Kvasnicka",
"bugs": {
"url": "https://github.com/6finger/cs_drawing_program/issues"
},
"homepage": "https://github.com/6finger/cs_drawing_program#readme"
}