-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.26 KB
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
{
"name": "sampleComponent",
"version": "1.0.0",
"description": "sampleComponent",
"main": "lib/",
"jsnext:main": "index.js",
"scripts": {
"build": "npm run build:dist && npm run build:module",
"build:dist": "webpack --bail -p --type build",
"build:module": "webpack --bail -p --type build-module",
"serve": "webpack-dev-server --inline --type serve",
"serve:dev": "webpack-dev-server --env dev --type serve --inline",
"serve:prod": "webpack-dev-server --env prod --type serve --inline",
"test": "karma start --type test",
"test:live": "karma start --type test --auto-watch --no-single-run",
"prepublish": "npm run build"
},
"license": "MIT",
"dependencies": {
"angular": "^1.4.8",
"angular-ui-router": "^0.2.15"
},
"devDependencies": {
"angular-mocks": "^1.4.8",
"autoprefixer": "^6.0.3",
"babel-core": "^6.3.15",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-plugin-syntax-flow": "^6.3.13",
"babel-plugin-transform-flow-strip-types": "^6.3.15",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-runtime": "^6.3.13",
"browser-sync": "^2.10.0",
"browser-sync-webpack-plugin": "^1.0.1",
"commander": "^2.9.0",
"css-loader": "^0.21.0",
"eslint": "^1.10.3",
"eslint-loader": "^1.1.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.5",
"grunt": "^0.4.5",
"grunt-webpack": "^1.0.11",
"grunt-webpack-server": "^0.1.0",
"html-webpack-plugin": "^1.6.2",
"isparta-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.3.4",
"karma": "^0.13.14",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.21",
"karma-webpack": "^1.7.0",
"lodash": "^3.10.1",
"matchdep": "^1.0.0",
"ng-annotate-webpack-plugin": "^0.1.2",
"node-libs-browser": "^0.5.3",
"node-sass": "^3.4.2",
"null-loader": "^0.1.1",
"phantomjs": "^1.9.18",
"postcss-loader": "^0.7.0",
"raw-loader": "^0.5.1",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0",
"webpack-split-by-path": "0.0.7"
}
}