forked from bloominstituteoftechnology/Precourse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 1.21 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
{
"name": "lambdaschoolprecourse",
"version": "1.0.0",
"description": "This repo contains the instruction material and assignments for Lambda School's pre-course workshop.",
"main": "index.js",
"scripts": {
"test": "eslint Lesson8-DOM/homework/homework.js Lesson7-JS-IV/homework/homework.js Lesson6-JS-III/homework/homework.js Lesson5-JS-II/homework/homework.js Lesson4-Intro-to-JS/homework/homework.js && jest",
"test:JSI": "eslint Lesson2-Intro-to-JS/homework/homework.js && jest JSI.test.js",
"test:JSII": "eslint Lesson3-JS-II/homework/homework.js && jest JSII.test.js",
"test:JSIII": "eslint Lesson4-JS-III/homework/homework.js && jest JSIII.test.js",
"test:JSIV": "eslint Lesson5-JS-IV/homework/homework.js && jest JSIV.test.js",
"test:DOM": "eslint Lesson8-DOM/homework/homework.js && jest DOM.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lambdaschool/precourse.git"
},
"author": "Daniel Frehner, Lambda School",
"license": "ISC",
"bugs": {
"url": "https://github.com/lambdaschool/precourse/issues"
},
"homepage": "https://github.com/lambdaschool/precourse#readme",
"devDependencies": {
"eslint": "^4.13.1",
"jest": "^22.0.3"
}
}