-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "node-boggle-solver",
"version": "0.0.0-development",
"description": "Solve boggle grids",
"main": "dist/index.js",
"scripts": {
"build": "babel --copy-files --out-dir dist src",
"prebuild": "rimraf dist",
"lint": "eslint src",
"report-coverage": "codecov",
"test": "jest",
"test-coverage": "jest --coverage",
"test-watch": "jest --watch",
"commit": "git-cz",
"doctoc": "doctoc README.md",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/lyndseybrowning/node-boggle-solver.git"
},
"keywords": [
"boggle",
"boggle solver",
"words",
"dictionary"
],
"files": [
"dist",
"README.md"
],
"author": "Lyndsey Browning <[email protected]> (http://lyndseyb.co.uk/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lyndseybrowning/node-boggle-solver/issues"
},
"homepage": "https://github.com/lyndseybrowning/node-boggle-solver#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-jest": "18.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-array-includes": "2.0.3",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "1.1.8",
"babel-preset-es2015": "^6.22.0",
"codecov": "1.0.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "1.2.0",
"eslint": "^3.15.0",
"ghooks": "2.0.0",
"jest": "^18.1.0",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2"
},
"dependencies": {
"trie-prefix-tree": "1.3.0"
},
"jest": {
"coverageDirectory": "./coverage",
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/__tests__/extends/"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleFileExtensions": [
"js",
"json",
"es6"
]
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
}
}