forked from tddbin/katas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 848 Bytes
/
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": "js-katas",
"version": "0.0.1",
"description": "JavaScript Katas that can be run locally to learn on your own pace",
"scripts": {
"test": "func() { mocha -r esm \"$1\"/{**,**/**}/*.js --require=mocha-require.js -R progress; }; func",
"test:katas": "npm run test:libraries && npm run test:language",
"test:language": "npm run test language",
"test:learn-by-rewriting": "npm run test learn-by-rewriting",
"test:libraries": "npm run test libraries"
},
"repository": {
"type": "git",
"url": "https://github.com/tddbin/katas.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tddbin/katas/issues"
},
"homepage": "https://jskatas.org",
"devDependencies": {
"hamjest": "^3.1.0",
"hamjest-spy": "4.0.0",
"mocha": "^2.2.5"
},
"dependencies": {}
}