-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 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
{
"name": "permutils",
"version": "1.0.1",
"description": "Utility package for permutations, including Lehmer codes.",
"main": "src/permutils.js",
"scripts": {
"test": "./node_modules/.bin/_mocha spec",
"test-coverage": "NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- spec --recursive; xdg-open ./coverage/lcov-report/index.html 2> /dev/null; open ./coverage/lcov-report/index.html 2> /dev/null"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scmorse/permutils.git"
},
"keywords": [
"permutation",
"permute",
"lehmer",
"util",
"utility",
"utilities"
],
"author": "Stephen Morse <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/scmorse/permutils/issues"
},
"homepage": "https://github.com/scmorse/permutils#readme",
"dependencies": {
"lodash": "^3.10.1"
},
"devDependencies": {
"chai": "^3.4.1",
"istanbul": "^0.4.0",
"mocha": "^2.3.3"
}
}