-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·23 lines (23 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·23 lines (23 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "hello-pluralsight-project",
"version": "1.0.0",
"description": "Sample Pluralsight Project",
"main": "index.js",
"scripts": {
"test": "npm-run-all -s test:notify test:code",
"test:code": "mocha test/",
"test:notify": "mocha --reporter json test/ | node ping.js",
"deploy:github-pages": "git push origin master:gh-pages",
"test-watch": "npm-run-all -p -r test-watch:code test-watch:notify",
"test-watch:code": "mocha test/ --bail --watch --watch-extensions html",
"test-watch:notify": "mocha test/ --reporter json --watch --watch-extensions html | node ping.js"
},
"author": "Adam Fortuna",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"npm-run-all": "^4.0.2"
}
}