-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "axial-map",
"version": "1.0.7",
"description": "A wrapper for a JS native Map object to make traversing them a bit easier.",
"main": "./dist/AxialMap.js",
"scripts": {
"build": "babel src -d dist --presets babel-preset-es2015",
"prepublish": "npm run test && npm run build",
"test": "mocha **/*.test.js",
"test:watch": "nodemon --exec \"npm test\"",
"test:coverage": "nyc --reporter=html --reporter=text mocha \"tests/*.test.js\"",
"lintjs": "eslint -c .eslintrc src/|| true",
"generate-docs": "documentation build src/AxialMap.js -f md > docs.md"
},
"repository": {
"type": "git",
"url": "https://github.com/sarcastron/axial-map.git"
},
"keywords": [
"Javascript",
"Map",
"traversable",
"axial",
"longitudinal",
"data",
"structure"
],
"author": "Adam Plante",
"license": "ISC",
"bugs": {
"url": "https://github.com/sarcastron/axial-map/issues"
},
"homepage": "https://github.com/sarcastron/axial-map#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"documentation": "^9.1.1",
"eslint": "^4.19.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0"
}
}