-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.17 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
50
51
52
53
54
{
"name": "percom",
"version": "1.1.4",
"description": "A calculation npm module that is to simplify the calculation of permutations and combinations",
"keywords": [
"math",
"front-end",
"combination",
"permitation",
"calclation",
"enumeration",
"percom",
"組み合わせ",
"順列",
"列挙",
"javascript 組み合わせ 列挙"
],
"main": "./src/index.js",
"repository": "https://github.com/kota-yata/percom",
"author": "Kota Yatagai (https://kota-yata.com)",
"license": "MIT",
"private": false,
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"mocha": "^7.1.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1"
},
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"nyc": {
"include": [
"src/*.js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix . --ignore-path .gitignore",
"prettier . --write --ignore-path .gitignore"
]
}
}