-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "union-replacer",
"version": "2.0.1",
"description": "One-pass String.prototype.replace-like processor with multiple regexps and replacements",
"main": "dist/union-replacer.cjs.js",
"module": "dist/union-replacer.esm.js",
"browser": "dist/union-replacer.umd.js",
"types": "types",
"scripts": {
"lint": "eslint . && dtslint types",
"build": "rollup -c",
"postbuild": "npm run update-types",
"pretest": "npm run build && npm run lint",
"test": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"prepare": "npm test",
"update-types": "jsdoc -d types -t node_modules/tsd-jsdoc/dist -c .jsdoc.conf.js",
"postupdate-types": "node scripts/tsd-postprocess.js",
"docs": "jsdoc -d dist/docs -c .jsdoc.conf.js",
"version": "npm run build && git add types/index.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orchitech/union-replacer.git"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"dtslint": "^4.0.4",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.1",
"jasmine": "^3.6.1",
"jasmine-diff": "^0.1.3",
"jsdoc": "^3.6.6",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tsd-jsdoc": "^2.5.0"
},
"keywords": [
"regexp",
"replace",
"union",
"alternation"
],
"files": [
"dist",
"types/index.d.ts"
],
"author": "Martin Cizek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/orchitech/union-replacer/issues"
},
"homepage": "https://github.com/orchitech/union-replacer#readme"
}