-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "@unction/lackstext",
"version": "6.3.0",
"description": "Determines if a string does not have another string",
"keywords": [
"unction",
"functional"
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/unctionjs/lacksText#readme",
"repository": "github:unctionjs/lacksText",
"bugs": "https://github.com/unctionjs/lacksText/issues",
"contributors": [
{
"name": "Kurtis Rainbolt-Greene",
"email": "[email protected]",
"url": "https://kurtis.rainbolt-greene.online"
}
],
"main": "main.js",
"module": "module.js",
"browser": "browser.js",
"types": "index.ts",
"files": [
"index.ts",
"main.js",
"module.js",
"browser.js"
],
"sideEffects": false,
"scripts": {
"prepublishOnly": "npm run build",
"test": "BABEL_ENV=test jest --coverage",
"build": "npm run build:browser && npm run build:main && npm run build:module",
"build:main": "babel --env-name main --out-file './main.js' './index.ts'",
"build:browser": "babel --env-name browser --out-file './browser.js' './index.ts'",
"build:module": "babel --env-name module --out-file './module.js' './index.ts'",
"lint": "eslint './index.ts'",
"typecheck": "tsc --noEmit",
"ci": "npm run typecheck && npm run lint && npm run test"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-jest": "^26.6.3",
"babel-plugin-annotate-console-log": "^1.0.0",
"babel-preset-minify": "^0.5.1",
"core-js": "^3.8.0",
"eslint": "^7.14.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^23.0.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"typescript": "^4.1.2",
"@babel/plugin-proposal-pipeline-operator": "^7.12.1"
},
"dependencies": {
"@unction/matchesregexp": "1.0.0",
"escape-string-regexp": "2.0.0"
}
}