-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.28 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.28 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
{
"name": "exercises-javascript",
"version": "1.0.0",
"description": "A couple of programming exercises I thought would be fun to try.",
"scripts": {
"bundle": "browserify src/index.js | squash > docs/resources/js/application.js && npm run copy-exercises",
"copy-exercises": "copyfiles --up 1 src/exercise/*.js docs/",
"watch": "watchify src/index.js -o docs/resources/js/application.js -v",
"test-only": "qunit",
"test": "npm run test-only && npm run bundle && npm run generate-readme",
"generate-readme": "node script/generate-readme.js",
"create-new-exercise": "node script/create-new-exercise.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slothsoft/exercises-javascript"
},
"keywords": [
"example",
"html",
"javascript",
"website"
],
"author": "Stef Schulz",
"license": "MIT",
"bugs": {
"url": "https://github.com/slothsoft/exercises-javascript/issues"
},
"homepage": "https://github.com/slothsoft/exercises-javascript/blob/master/README.md",
"devDependencies": {
"@slothsoft/qunit-reporter": "^0.2.0",
"butternut": "^0.4.6",
"copyfiles": "^2.1.1",
"ftp-deploy": "^2.3.3",
"qunit": "^2.9.2",
"watchify": "^3.11.1",
"xslt-processor": "^0.11.5"
},
"dependencies": {}
}