-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
49 lines (49 loc) · 1.81 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
43
44
45
46
47
48
49
{
"name": "katas",
"version": "0.0.1",
"description": "Service providing katas that can be loaded into tddbin.com.",
"main": "index.js",
"scripts": {
"build": "./scripts/build.sh",
"build-for-offline": "npm run build && ./scripts/build-for-offline.sh",
"test": "npm run test:src && npm run test:katas",
"typecheck": "flow",
"test:src": "mocha --require esm src/{,*,**}/*.spec.js -R progress",
"_test": "func() { mocha -r esm katas/\"$1\"/{**,**/**}/*.js --require=katas/mocha-require.js -R progress; }; func",
"test:katas": "npm run test:katas:libraries && npm run test:katas:language",
"test:katas:libraries": "npm run _test libraries",
"test:katas:libraries:hamjest": "npm run _test libraries/hamjest",
"test:katas:libraries:mocha": "npm run _test libraries/mocha",
"test:katas:language": "npm run _test es*",
"test:katas:language:es1": "npm run _test es1",
"test:katas:language:es5": "npm run _test es5",
"test:katas:language:es6": "npm run _test es6",
"test:katas:language:es7": "npm run _test es7",
"test:katas:language:es8": "npm run _test es8",
"test:katas:language:es10": "npm run _test es10",
"releasable": "node -r esm ./scripts/check-todo-list.js",
"preversion": "npm run releasable && npm test && npm run build",
"release": "npm version major"
},
"repository": {
"type": "git",
"url": "https://github.com/tddbin/katas.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/tddbin/katas/issues"
},
"homepage": "https://github.com/tddbin/katas",
"devDependencies": {
"esm": "^3.2.25",
"flow-bin": "^0.125.1",
"hamjest": "^3.1.0",
"hamjest-spy": "4.0.0",
"mocha": "^7.2.0",
"recursive-readdir": "^2.2.2",
"sinon": "^9.0.2",
"zustand": "^3.4.1"
},
"dependencies": {}
}