-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 2.29 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
{
"name": "paperhive-widget",
"version": "1.1.0",
"description": "PaperHive widget",
"main": "index.js",
"scripts": {
"build:js": "webpack --mode=production",
"build": "rm -rf build* && npm run build:js",
"install:selenium": "npm install selenium-standalone && selenium-standalone install --version=3.4.0",
"lint:js": "eslint src/ test/",
"lint:sass": "sass-lint -v --max-warnings 1",
"lint": "npm-run-all lint:*",
"test:e2e": "nightwatch -c nightwatch.conf.js --retries 3 `[ ! -z \"$TRAVIS_JOB_NUMBER\" ] && echo '-e chrome,edge,firefox,ie,safari'`",
"test": "npm-run-all test:*",
"watch:js": "webpack --mode=development --progress --colors --watch",
"watch:server": "live-server --host=0.0.0.0 --open='#type=arxiv&id=1603.00059' --mount=/index.script.html:test/e2e/index.script.html build",
"watch": "npm-run-all --parallel watch:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperhive/paperhive-widget.git"
},
"author": "André Gaul <andre@paperhive.org>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/paperhive/paperhive-widget/issues"
},
"homepage": "https://github.com/paperhive/paperhive-widget#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.28.11",
"ejs-loader": "^0.3.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"exports-loader": "^0.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"imports-loader": "^0.8.0",
"live-server": "^1.0.0",
"nightwatch": "^0.9.21",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"sass-lint": "^1.12.1",
"sass-loader": "^7.0.3",
"svgo": "^1.0.5",
"svgo-loader": "^2.0.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-cli": "^2.1.5"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"co": "^4.6.0",
"es6-promise": "^4.2.4",
"lodash": "^4.17.10",
"normalize.css": "^8.0.0",
"query-string": "^6.1.0",
"selenium-standalone": "^6.15.0",
"whatwg-fetch": "^2.0.4"
}
}