-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 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
{
"name": "highliter",
"version": "1.0.0",
"description": "⚡ Lightweight JS highlighter",
"homepage": "https://sarckk.github.io/highliter",
"repository": {
"type": "git",
"url": "https://github.com/sarckk/highliter"
},
"main": "./dist/highliter.min.js",
"files": [
"/dist"
],
"scripts": {
"start": "webpack-dev-server -d --env=dev --open",
"build": "webpack -p --env=prod",
"watch": "webpack -p --env=prod --watch",
"build-demo": "webpack -p --env=prod-demo",
"prepublishOnly": "npm run build"
},
"keywords": [
"highlight",
"javascript",
"selection",
"range",
"no-dependencies"
],
"author": "sarckk <https://github.com/sarckk>",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"extract-loader": "^5.1.0",
"html-webpack-plugin": "^4.3.0",
"prettier": "^1.19.1",
"style-loader": "^1.2.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.0.9"
},
"bugs": {
"url": "https://github.com/sarckk/highliter/issues"
}
}