-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
31 lines (31 loc) · 932 Bytes
/
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
{
"name": "js-svglibrary",
"version": "1.0.0",
"description": "Build an SVG Library with Javascript - https://pluralsight.com",
"scripts": {
"start": "ws --hostname localhost --open",
"test": "cross-env NODE_ENV=test mocha './test/*.test.js' || true",
"test:module1": "cross-env NODE_ENV=test mocha './test/module1.test.js' || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pluralsight-projects/JS-SVGLibrary"
},
"author": "Thomas Bell",
"license": "MIT",
"bugs": {
"url": "https://github.com/pluralsight-projects/JS-SVGLibrary/issues"
},
"homepage": "https://github.com/pluralsight-projects/JS-SVGLibrary#readme",
"dependencies": {
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^5.2.0",
"dot-object": "^1.9.0",
"jscodeshift": "^0.6.4",
"mocha": "^6.2.0"
},
"devDependencies": {
"local-web-server": "^3.0.7"
}
}