-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "word-highlighter",
"version": "0.2.0",
"description": "Highlight plaintext words of your choosing",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint ./src/**/*.js ./index.js",
"test:watch": "jest --watch",
"build:dev": "nodemon --exec \"webpack --config webpack.dev.config.js\"",
"build": "webpack --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ghost---Shadow/word-highlighter.git"
},
"keywords": [
"highlight"
],
"author": "Souradeep Nanda",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ghost---Shadow/word-highlighter/issues"
},
"homepage": "https://github.com/Ghost---Shadow/word-highlighter#readme",
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"webpack": "^5.23.0",
"webpack-cli": "^4.5.0"
}
}