forked from kentcdodds/es6-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.08 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.08 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "ES6-Workshop",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/kentcdodds/es6-workshop",
"repository": {
"type": "git",
"url": "git://github.com/kentcdodds/es6-workshop.git"
},
"devDependencies": {
"all-contributors-cli": "^4.0.1",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.2.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.23.0",
"chalk": "^1.1.3",
"chokidar": "^1.6.1",
"eslint": "^3.17.0",
"eslint-config-kentcdodds": "^12.1.0",
"eslint-plugin-babel": "^4.1.1",
"glob": "^7.1.1",
"husky": "^0.13.2",
"jest-cli": "^19.0.2",
"lodash": "^4.17.4",
"npm-run-all": "^4.0.2",
"onchange": "^3.2.1",
"opt-cli": "^1.5.1",
"prettier-eslint-cli": "^3.1.2",
"pretty-format": "^19.0.0",
"replace-in-file": "^2.4.1",
"split-guide": "^1.2.1"
},
"scripts": {
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate",
"start": "npm run test:watch",
"lint": "eslint exercises-final common quizzes",
"precommit": "opt --in precommit --exec \"npm run lint && npm run generate && npm run test:final && git add exercises exercises-final\"",
"quiz": "babel-node quizzes/run.js",
"test": "jest --config=exercises/jest.config.json",
"test:changed": "npm run test --silent -- --onlyChanged",
"test:watch": "npm test -- --watch",
"test:final": "jest --config=exercises-final/jest.config.json",
"test:final:watch": "npm run test:final -- --watch",
"dev": "npm-run-all --parallel generate:watch test:final:watch",
"generate:watch": "onchange \"templates/**/*.*\" --initial -- npm run generate",
"generate": "split-guide generate --silent-success",
"autofill-email": "node ./scripts/autofill-feedback-email",
"validate": "npm run lint && npm run test:final",
"setup": "node ./scripts/verify && node ./scripts/install && npm run validate"
},
"LICENSE": "MIT"
}