forked from ufal/lindat-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.8 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
75
76
77
78
79
80
81
82
83
{
"name": "lindat-common",
"version": "1.6.0",
"main": "dist/public/js/angular-lindat.js",
"description": "Common Lindat Theme (header and footer)",
"license": "MIT",
"homepage": "https://lindat.mff.cuni.cz/",
"bugs": {
"url": "https://github.com/ufal/lindat-common/issues"
},
"keywords": [
"lindat",
"theme",
"angular"
],
"repository": {
"type": "git",
"url": "https://github.com/ufal/lindat-common.git"
},
"authors": [
"Amir Kamran <[email protected] >",
"Ondřej Košarko <[email protected]>",
"Jozef Mišutka <[email protected]>",
"Michal Sedlák <[email protected]>"
],
"dependencies": {
"angular": "^1.4",
"jquery": "^3.x",
"clipboard": "~1.6.1"
},
"scripts": {
"clean": "npm run clean-dist && npm run clean-pages",
"clean-dist": "rm -rf dist dist.*",
"clean-pages": "rm -rf pages",
"init-dist": "mkdir -p dist/public/img && mkdir -p dist/public/fonts",
"copy-static": "cp -R ./src/images/* dist/public/img && cp ./src/refbox/fonts/* dist/public/fonts/",
"prebuild": "npm run clean-dist && npm run init-dist && npm run copy-static",
"build": "NODE_ENV=production webpack --devtool source-map",
"build-pages": "npm run clean-pages && webpack -p --pages --devtool source-map",
"start": "webpack-dev-server --debug --hot --inline --colors --devtool eval --display-error-details --display-cached",
"serve-pages": "webpack-dev-server -p --debug --quiet",
"pretest": "webdriver-manager update --standalone && pm2 start './node_modules/.bin/webpack-dev-server' --no-vizion --name 'test' -- -p --debug --quiet",
"prepublish": "npm run clean && npm run build",
"test": "protractor",
"posttest": "pm2 stop test && pm2 kill",
"release": "mversion minor"
},
"devDependencies": {
"angular-google-analytics": "^1.1.3",
"angular-piwik": "git://github.com/mike-spainhower/angular-piwik.git",
"autoprefixer-loader": "^3.1.0",
"css-loader": "^0.19.0",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"html-loader": "^0.3.0",
"html-minify-loader": "^1.0.0",
"html-webpack-plugin": "^2.0.3",
"i18n-webpack-plugin": "^0.2.7",
"js-yaml": "^3.4.3",
"json-loader": "^0.5.3",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"lodash": "^3.10.1",
"mustache-loader": "^0.3.1",
"mversion": "^1.10.1",
"ng-annotate-loader": "0.0.10",
"optimist": "^0.6.1",
"pm2": "^0.15.7",
"protractor": "^4.0.14",
"raw-loader": "^0.5.1",
"simple-git": "^1.11.0",
"style-loader": "^0.12.4",
"swig-loader": "^1.0.0",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-merge": "^0.2.0",
"yaml-loader": "^0.1.0"
},
"engines": {
"node": ">=0.10.0"
}
}