-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "sw-extract",
"version": "1.1.2",
"description": "Extracting stopwords from a string.",
"keywords": [
"stopwords",
"keyword",
"search",
"extract"
],
"main": "dist/sw-extract.cjs.min.js",
"module": "dist/sw-extract.esm.min.js",
"unpkg": "dist/sw-extract.umd.min.js",
"files": [
"src",
"dist/*.js"
],
"scripts": {
"test": "jest",
"coverage": "rimraf coverage && jest --coverage",
"coverall": "rimraf coverage && jest --coverage && coveralls < coverage/lcov.info",
"lint": "eslint src/*.js",
"prebuild": "rimraf dist ",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/AmineYagoub/sw-extract.git"
},
"author": "@_AmineYagoub",
"license": "MIT",
"bugs": {
"url": "https://github.com/AmineYagoub/sw-extract/issues"
},
"homepage": "https://github.com/AmineYagoub/sw-extract#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-node-resolve": "^8.0.1",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.14.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^6.1.0"
},
"engines": {
"node": ">=14.0.0"
}
}