forked from flauwekeul/honeycomb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.68 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.68 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "honeycomb-grid",
"version": "1.3.3",
"description": "Create hexagon grids easily. Written in javascript.",
"source": "src/honeycomb.js",
"main": "dist/honeycomb.min.js",
"module": "dist/honeycomb.esm.min.js",
"jsnext:main": "dist/honeycomb.esm.min.js",
"types": "dist/honeycomb.d.ts",
"scripts": {
"build": "npm run clean && npm run copy-types && rollup --config rollup.config.js",
"clean": "rm -rf dist && mkdir dist",
"copy-types": "cp src/honeycomb.d.ts dist/",
"coverage": "NODE_ENV=test nyc --reporter html --exclude \"**/*.spec.js\" npm test",
"dev": "npm run build -- --watch",
"docs": "documentation readme src --config documentation.yml --sort-order alpha --section API",
"docs:serve": "documentation serve src --config documentation.serve.yml --sort-order alpha --watch",
"lint": "eslint src --fix && tslint src/honeycomb.d.ts --fix",
"precommit": "npm run lint",
"prerelease": "npm run lint && npm test && npm run docs && NODE_ENV=production npm run build",
"release": "git add --patch && standard-version --commit-all",
"start": "npm run build && node --require ./dist/honeycomb.js",
"test": "NODE_ENV=test nyc mocha --require test/config.js src --recursive",
"test:watch": "npm test -- --watch --bail"
},
"author": "Abbe Keultjes <flauwekeul@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "6.26.0",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-istanbul": "4.1.5",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"chai": "4.1.2",
"cz-conventional-changelog": "2.1.0",
"documentation": "6.1.0",
"eslint": "4.18.2",
"husky": "0.14.3",
"istanbul": "0.4.5",
"mocha": "5.0.4",
"nyc": "11.6.0",
"rollup": "0.57.0",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-node-resolve": "3.2.0",
"rollup-plugin-uglify": "3.0.0",
"sinon": "4.4.6",
"sinon-chai": "3.0.0",
"standard-version": "4.3.0",
"tslint": "5.9.1",
"typescript": "2.7.2"
},
"directories": {
"test": "test"
},
"dependencies": {
"axis.js": "1.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flauwekeul/honeycomb.git"
},
"keywords": [
"es2015",
"grid",
"hex",
"hex-grid",
"hexagon",
"node"
],
"bugs": {
"url": "https://github.com/flauwekeul/honeycomb/issues"
},
"homepage": "http://abbekeultjes.nl/honeycomb",
"nyc": {
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}