-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.6 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
{
"name": "hypotheek",
"version": "0.0.12",
"description": "Hypotheek computations",
"keywords": [
"d3.js",
"mortgage",
"hypotheek"
],
"author": "Hugo Janssen <nl-hugo@hugojanssen.nl> (https://github.com/nl-hugo)",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nl-hugo/hypotheek-calculator.git"
},
"dependencies": {
"d3": "^4.8.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"bootstrap": "^4.0.0-alpha.6",
"bootstrap-loader": "^2.0.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"exports-loader": "^0.6.4",
"expose-loader": "^0.7.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"imports-loader": "^0.7.1",
"moment": "^2.18.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"resolve-url-loader": "^2.0.2",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"url-loader": "^0.5.8",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.0-rc.0"
},
"scripts": {
"start": "webpack-dev-server --inline --progress",
"lint:js": "eslint src/ webpack.*.js --cache",
"build": "npm run lint:js && webpack -p",
"version:patch": "npm version patch",
"push:git": "git push --tags origin HEAD:master",
"push:gh-pages": "git subtree push --prefix dist origin gh-pages",
"push": "npm run push:git && npm run push:gh-pages",
"deploy": "npm run version:patch && npm run push"
}
}