-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.38 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.38 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
{
"name": "functional-bowling",
"version": "0.2.0",
"description": "Functional algorithm of Bowling scoring written in JavaScript with TDD model",
"keywords": [
"functional-programming",
"algorithm",
"bowling-score",
"javascript",
"test-driven-development"
],
"author": "shiy007@qq.com",
"license": "AGPL-3.0",
"homepage": "https://github.com/TechQuery/Functional-Bowling#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/Functional-Bowling.git"
},
"bugs": {
"url": "https://github.com/TechQuery/Functional-Bowling/issues"
},
"main": "dist/index.js",
"browser": "dist/index.js",
"module": "index.js",
"scripts": {
"lint": "eslint index.js test/ --fix",
"test": "mocha --exit",
"debug": "mocha --inspect-brk",
"pack": "amd-bundle index dist/functional-bowling",
"build": "npm run lint && npm test && npm run pack",
"prepublishOnly": "npm run build",
"precommit": "npm run build && git add ."
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"amd-bundle": "^1.6.0",
"eslint": "^5.6.0",
"husky": "^0.14.3",
"mocha": "^5.2.0",
"should": "^13.2.3"
},
"babel": {
"presets": [
[
"@babel/preset-env"
]
]
}
}