-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
58 lines (58 loc) · 1.63 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
{
"name": "contour",
"description": "Forio's Visualization Library",
"version": "2.0.0",
"author": {
"name": "Forio Corporation",
"url": "https://forio.com",
"email": "[email protected]"
},
"license": "Apache-2.0",
"main": "dist/contour.js",
"unpkg": "dist/contour.min.js",
"scripts": {
"relnotes": "git log --pretty=\"format: * %s\" `git describe --tags --abbrev=0`..HEAD >> ./dist/release_notes.txt ",
"changelog": "conventional-changelog -p atom -i CHANGELOG.md -s",
"prepush": "npm run lint && npm test",
"prepublish": "npm run build",
"build": "webpack",
"test": "jasmine JASMINE_CONFIG_PATH=tests/jasmine.json",
"lint": "jshint ./src/scripts",
"docs": "node ./build-documentation.js"
},
"repository": {
"url": "https://github.com/forio/contour",
"type": "git"
},
"dependencies": {
"d3": "~3.5.10",
"lodash.defaults": "^4.2.0",
"lodash.merge": "^4.6.0"
},
"devDependencies": {
"async": "1.5.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"conventional-changelog-cli": "^1.3.5",
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"glob": "6.0.1",
"husky": "^0.14.3",
"jasmine": "^2.8.0",
"jasmine-node": "^1.14.5",
"jquery": "^3.2.1",
"jsdom": "^10.1.0",
"jshint": "^2.9.5",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"markdox": "0.1.10",
"shelljs": "0.5.3",
"style-loader": "^0.19.0",
"underscore": "1.8.3",
"webpack": "^3.8.1"
}
}