forked from wix-incubator/node-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.12 KB
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
41
42
43
44
45
46
{
"name": "node-workshop",
"version": "1.0.0",
"description": "All code for the Wix NodeJS workshop",
"main": "index.js",
"scripts": {
"postinstall": "npm run install-00 && npm run install-01 && npm run install-02 && npm run install-03 && npm run install-01x && npm run install-02x && npm run install-03x",
"install-00": "cd 01-tutorial-code && npm install",
"install-01": "cd 03-solved-exercises/01-db && npm install",
"install-02": "cd 03-solved-exercises/02-todomvc-client && npm install",
"install-03": "cd 03-solved-exercises/03-todomvc-server && npm install",
"install-01x": "cd 02-exercises/01-db && npm install",
"install-02x": "cd 02-exercises/02-todomvc-client && npm install",
"install-03x": "cd 02-exercises/03-todomvc-server && npm install",
"test": "npm run test-00 && npm run test-01 && npm run test-02 && npm run test-03",
"test-00": "cd 01-tutorial-code && npm test",
"test-01": "cd 03-solved-exercises/01-db && npm test",
"test-02": "cd 03-solved-exercises/02-todomvc-client && npm test",
"test-03": "cd 03-solved-exercises/03-todomvc-server && npm test",
"clean": "npm run clean-00 && npm run clean-01 && npm run clean-02 && npm run clean-03 && npm run clean-01x && npm run clean-02x && npm run clean-03x",
"clean-00": "cd 01-tutorial-code && npm run clean",
"clean-01": "cd 03-solved-exercises/01-db && npm run clean",
"clean-02": "cd 03-solved-exercises/02-todomvc-client && npm run clean",
"clean-03": "cd 03-solved-exercises/03-todomvc-server && npm run clean",
"clean-01x": "cd 02-exercises/01-db && npm run clean",
"clean-02x": "cd 02-exercises/02-todomvc-client && npm run clean",
"clean-03x": "cd 02-exercises/03-todomvc-server && npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/node-workshop.git"
},
"keywords": [
"workshop",
"tutorial",
"excercise",
"nodejs",
"javascript"
],
"author": "Gil Tayar <gil@tayar.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wix/node-workshop/issues"
},
"homepage": "https://github.com/wix/node-workshop#readme"
}