-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.17 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
{
"name": "exercises-template",
"version": "1.0.0",
"description": "TODO: REPLACE ALL {gitHubOrgName} AND {gitHubProjectName} BELOW",
"main": "index.js",
"homepage": "https://codesandbox.io/s/github/{gitHubOrgName}/{gitHubProjectName}?previewwindow=tests",
"repository": {
"url": "[email protected]:{gitHubOrgName}/{gitHubProjectName}.git",
"type": "git"
},
"scripts": {
"dev": "./node_modules/.bin/lite-server",
"start": "NODE_OPTIONS=--no-warnings ./node_modules/.bin/mocha ./test",
"pretest": "NODE_OPTIONS=--no-warnings npm install > /dev/null",
"test": "NODE_OPTIONS=--no-warnings ./node_modules/.bin/mocha ./test",
"test:watch": "./node_modules/.bin/mocha --growl --reporter=list --bail --watch './test'"
},
"keywords": [
"object",
"array",
"traversal",
"exercises",
"workout"
],
"author": "Dan Levy",
"license": "MIT",
"dependencies": {
"chai": "^4.2.0",
"esm": "^3.2.25",
"mocha": "^6.1.4",
"mocha-junit-reporter": "^1.23.1",
"mocha-multi-reporters": "^1.1.7",
"test": "^0.6.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"growl": "^1.10.5",
"lite-server": "^2.5.3"
}
}