-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.49 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
66
67
68
69
70
71
72
73
74
{
"name": "@fintechstudios/angularjs-mdc",
"version": "0.7.1",
"description": "Material Design Components Web for AngularJS",
"main": "./dist/index",
"scripts": {
"lint": "eslint --color src",
"build": "webpack --colors",
"build:min": "cross-env MDC_ENV=production webpack -p --colors",
"build:demos": "cross-env MDC_ENV=demos webpack -p --colors",
"build:all": "npm run build && npm run build:min",
"test": "cross-env MDC_ENV=test karma start karma.conf.js",
"test:ci": "karma start karma.ci.conf.js",
"serve": "cross-env MDC_ENV=development webpack-dev-server --content-base demos --inline --hot --host 0.0.0.0",
"preversion": "npm run test -- --single-run",
"version": "npm run build:all && git add -A dist",
"postversion": "git push --follow-tags && npm publish --access public",
"deploy:pages": "./ghpages-deploy.sh demos"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fintechstudios/angularjs-mdc.git"
},
"author": "Dylan Praul",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/fintechstudios/angularjs-mdc/issues"
},
"homepage": "https://github.com/fintechstudios/angularjs-mdc#readme",
"peerDependencies": {
"angular": ">=1.5 <1.7"
},
"devDependencies": {
"angular": "^1.6.9",
"angular-debounce": "^1.1.0",
"angular-mocks": "^1.6.9",
"autoprefixer": "^8.0.0",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-angularjs-annotate": "^0.9.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"brfs": "^2.0.0",
"browserify": "^16.1.0",
"chai": "^4.0.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.9",
"eslint": "^5.0.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-angular": "^3.2.0",
"eslint-plugin-mocha": "^5.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-loader": "^0.5.5",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-junit-reporter": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"material-components-web": "0.32.0",
"mocha": "^5.0.1",
"node-sass": "^4.13.1",
"postcss-loader": "^2.1.0",
"sass-loader": "^7.0.0",
"style-loader": "^0.21.0",
"watchify": "^3.10.0",
"webpack": "^4.1.0",
"webpack-cli": "^3.0.1",
"webpack-dev-server": "^3.1.0"
}
}