-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.68 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
{
"name": "firemap",
"version": "0.1.0",
"description": "Heatmap By Inverse Distance Weighting",
"license": "MIT",
"author": "te schultz",
"main": "dist/firemap.js",
"keywords": [
"heatmap",
"Inverse Distance Weighting",
"visualize"
],
"repository": {
"type": "git",
"url": "https://github.com/artisin/firemap"
},
"bugs": {
"url": "https://github.com/artisin/firemap/issues"
},
"scripts": {
"build": "yarn run clean && webpack --color --progress",
"clean": "rm -rf dist/*",
"commit": "git cz",
"debug": "./node_modules/devtool/bin/index.js __tests__/index.js",
"dev": "yarn run clean && NODE_ENV=dev webpack -w",
"link": "yarn link && yarn link firemap",
"postinstall": "yarn run link",
"prepublish": "yarn run build",
"release:major": "bumped release major",
"release:minor": "bumped release minor",
"release:patch": "bumped release patch"
},
"dependencies": {
"detect-it": "^3.0.0",
"global": "^4.3.2",
"iron-node": "^3.0.19",
"lodash.throttle": "^4.1.1",
"ric": "^1.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.5.2",
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-terminal": "^0.7.3",
"commitizen": "^2.9.6",
"cz-customizable-te": "^5.1.0",
"fs-extra": "3.0.1",
"lodash": "4.17.4",
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}