forked from COMP2041UNSW/js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
41
42
{
"name": "2041-javascript",
"version": "1.0.0",
"description": "JavaScript course content for COMP2041, Software Construction",
"scripts": {
"test:dom": "npx mocha tests/dom/**/*.js",
"test:async": "npx mocha tests/async/**/*.js",
"test:basic": "npx mocha tests/basics/**/*.js",
"test": "npm run test:basic",
"lint": "npx eslint labs/**/*.js tutorials/**/*.js",
"start": "npx http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarkPurple141/js-primer.git"
},
"keywords": [
"javascript"
],
"author": "Alex Hinds <[email protected]>",
"contributors": [
{
"name": "Zain Afzal",
"url": "http://www.zainafzal.com/"
},
{
"name": "Alex Hinds",
"url": "https://alhinds.com/"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/DarkPurple141/js-primer/issues"
},
"homepage": "https://github.com/DarkPurple141/js-primer#readme",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.2.0",
"http-server": "^0.11.1",
"mocha": "^5.2.0"
}
}