-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.76 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
65
{
"name": "ng-fn-webpack-seed",
"version": "1.0.0",
"description": "An Angular seed with functional programming utilities and webpack",
"main": "app/app.js",
"scripts": {
"watch": "node webpack.hot.server.js",
"build": "webpack ./app/app.js bundle.js",
"unit": "karma start karma.conf.js",
"e2e": "protractor e2e-tests/protractor.conf.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kasperstorgaard/ng-fn-webpack-seed.git"
},
"keywords": [
"angular",
"webpack",
"functional",
"programming",
"ramda"
],
"author": "Kasper Storgaard",
"license": "ISC",
"bugs": {
"url": "https://github.com/kasperstorgaard/ng-fn-webpack-seed/issues"
},
"homepage": "https://github.com/kasperstorgaard/ng-fn-webpack-seed",
"dependencies": {
"angular": "^1.3.14",
"angular-ui-router": "^0.2.13",
"baconjs": "^0.7.53",
"key-path": "^0.3.2",
"ramda": "^0.11.0"
},
"devDependencies": {
"angular-mocks": "^1.3.14",
"bower": "^1.3.12",
"chai": "^2.1.1",
"coffee-loader": "^0.7.2",
"coffee-script": "^1.9.1",
"css-loader": "^0.9.1",
"express": "^4.11.2",
"html-webpack-plugin": "^1.1.0",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.2.2",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.5.0",
"less": "^2.4.0",
"less-loader": "^2.0.0",
"mocha": "^2.2.1",
"ng-annotate-loader": "0.0.1",
"ng-cache-loader": "0.0.8",
"protractor": "^1.8.0",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
}
}