-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.56 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
{
"name": "rexs",
"version": "1.0.3",
"description": "REXS is a language for creating regular expressions. This library can compile REXS to a regular expression.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.js",
"browser": "dist/rexs.min.js",
"jsdeliver": "dist/rexs.min.js",
"scripts": {
"build": "tsc && tsc -p tsconfig.browser.json && npx webpack",
"test": "nyc --reporter=lcov mocha --slow 0",
"coverage": "codecov",
"deploy": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uellenberg/REXS.git"
},
"keywords": [
"rexs",
"re",
"reg",
"regex",
"regular",
"expression",
"expressions",
"regular expression",
"regular expressions",
"language",
"lang",
"compiler",
"compile",
"builder",
"creator",
"create",
"helper",
"help",
"maker",
"make",
"easy",
"fast",
"quick",
"quickly"
],
"author": "Jonah Uellenberg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/uellenberg/REXS/issues"
},
"homepage": "https://github.com/uellenberg/REXS",
"devDependencies": {
"@types/node": "^15.0.1",
"chai": "^4.3.4",
"codecov": "^3.8.1",
"eslint": "^7.25.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"parselib": "^1.0.0"
},
"engines": {
"node": ">=0.14"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}