-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.97 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "angular-screenshot",
"version": "0.4.2",
"description": "Angular screenshot in directive for screen capture.",
"main": "dist/angular-screenshot.js",
"repository": {
"type": "git",
"url": "https://github.com/weihanchen/angular-screenshot.git"
},
"keywords": [
"screenshot",
"svg",
"canvas",
"angular"
],
"author": "weihanchen",
"license": "MIT",
"bugs": {
"url": "https://github.com/weihanchen/angular-screenshot/issues"
},
"homepage": "http://weihanchen.github.io/angular-screenshot",
"scripts": {
"build": "npm run esLint:start && npm run test && webpack && webpack -p && npm run copy:example",
"copy:example": "copyfiles -f ./build/*.js ./examples/js/plugins && copyfiles -f ./build/*.css ./examples/css/plugins",
"esLint:start": "./node_modules/.bin/eslint src/**/*.js",
"watch": "onchange src/*.js src/**/*.js src/**/*.scss -- npm run build",
"dev": "npm run build && webpack-dev-server --port 8003 --inline --watch --devtool eval --progress --colors --hot --content-base examples",
"release": "npm run esLint:start && npm run test && webpack --define increase=patch && webpack -p",
"test": "node ./node_modules/karma/bin/karma start"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"examples",
"scripts",
"src"
],
"dependencies": {
"angular": "^1.3"
},
"devDependencies": {
"angular-mocks": "^1.6.3",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.1.18",
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"copy-webpack-plugin": "^4.0.1",
"copyfiles": "^1.2.0",
"css-loader": "^0.23.0",
"dom-to-image": "^2.5.2",
"eslint": "^3.17.1",
"eslint-config-angular": "^0.5.0",
"eslint-plugin-angular": "^1.6.2",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"generate-json-webpack-plugin": "^0.2.1",
"highlightjs": "^9.10.0",
"html-webpack-plugin": "^2.24.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine": "^2.5.3",
"jquery": "^3.2.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-coveralls": "^1.1.2",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"ng-annotate-loader": "^0.2.0",
"ng-annotate-webpack-plugin": "^0.1.3",
"onchange": "^3.2.1",
"phantomjs-prebuilt": "^2.1.14",
"postcss": "^5.2.16",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"rimraf": "^2.6.1",
"semver": "^5.3.0",
"style-loader": "^0.13.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
}
}