This repository has been archived by the owner on Feb 21, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.78 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
84
{
"name": "html-highlighter",
"title": "Html Highlighter",
"description": "Highlight and select phrases in HTML pages.",
"version": "0.4.3",
"main": "dist/htmlhighlighter.js",
"module": "src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dossier/html-highlighter.git"
},
"keywords": [
"html",
"highlighter"
],
"author": "Diffeo, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/dossier/html-highlighter.git/issues"
},
"scripts": {
"build": "webpack --progress --color --display-error-details",
"build:min": "NODE_ENV=production webpack --progress --color --display-error-details",
"prepublish": "yarn run build && yarn run build:min",
"start": "webpack-dev-server --progress --color --hot --inline --host 0.0.0.0 --port $([ -z \"$NODE_PORT\" ] && echo 8080 || echo $NODE_PORT)",
"start:watch": "webpack --progress --color --display-error-details --watch",
"test": "mocha-webpack --colors --webpack-config webpack.config-test.js 'test/start.js'",
"lint": "sh/lint",
"fmt:js": "sh/fmt:js",
"fmt:json": "sh/fmt:json",
"fmt": "yarn fmt:js && yarn fmt:json",
"check-fmt:js": "sh/check-fmt:js",
"check-fmt:json": "sh/check-fmt:json",
"check-fmt": "sh/check-fmt:js && sh/check-fmt:json"
},
"files": [
"src/*",
"dist/*"
],
"dependencies": {
"merge": "^1.2.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"documentation-loader": "^0.1.1-beta",
"dom-loader": "^1.0.4",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^2.1.0",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-import": "^2.8.0",
"file-loader": "^0.11.1",
"flow-bin": "^0.62.0",
"flow-typed": "^2.2.3",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"http-server": "^0.10.0",
"ignore-loader": "^0.1.2",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"json-loader": "^0.5.4",
"mocha": "^6.1.4",
"mocha-loader": "^2.0.1",
"mocha-webpack": "^1.1.0",
"prettier": "^1.9.2",
"source-map-support": "^0.4.15",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-node-externals": "^1.6.0"
}
}