-
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) · 782 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 782 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
{
"author": "PROS Inc.",
"name": "js-assessment",
"description": "A test-driven assessment of JavaScript skills",
"version": "1.0.0",
"homepage": "http://pros.com",
"repository": {
"type": "git",
"url": "git://github.com/PROSPricing/js-assessment.git"
},
"dependencies": {
"browser-sync": "^2.8.2",
"chai": "^4.1.0",
"expect.js": "^0.3.1",
"jquery": "^3.2.1",
"mocha": "^3.4.2",
"sinon": "^2.3.8"
},
"scripts": {
"start": "node index.js",
"lint": "eslint --quiet tests/app app",
"lint-warn": "eslint tests/app app"
},
"private": true,
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-import": "^2.7.0"
}
}