-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.64 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "sdm2",
"version": "1.1.3",
"description": "A high performance library to match discontinuous strings",
"main": "dist/sdm2.js",
"types": "typings/index.d.ts",
"module": "dist/sdm2.esm.js",
"unpkg": "dist/sdm2.umd.js",
"jsdelivr": "dist/sdm2.umd.js",
"type": "module",
"scripts": {
"clean": "rimraf ./dist",
"test": "jest",
"test:coverage": "jest --coverage",
"release": "semantic-release",
"lint": "eslint --ext .ts,.js src/**",
"lint:fix": "eslint --ext .ts,.js src/** --fix",
"build:esm": "rollup -c config/rollup.config.esm.cjs",
"build:umd": "cross-env rollup -c config/rollup.config.umd.cjs",
"build:umd.min": "cross-env NODE_ENV=production rollup -c config/rollup.config.umd.cjs",
"build": "npm run clean && npm run build:esm && npm run build:umd && npm run build:umd.min",
"coveralls": "npm run test:coverage && coveralls < coverage/lcov.info",
"generate": "node generate-test-data.js 1000",
"aa": "cross-env VERSION=1.1.2 npm run build",
"commit": "git-cz && git push"
},
"author": "JOU-amjs",
"license": "MIT",
"homepage": "https://github.com/JOU-amjs/sdm2#readme",
"repository": {
"type": "git",
"url": "git://github.com/JOU-amjs/sdm2.git"
},
"bugs": {
"url": "https://github.com/JOU-amjs/sdm2/issues"
},
"files": [
"/dist",
"typings/*.d.ts"
],
"keywords": [
"string",
"match",
"strings search",
"string match",
"string discontinuous match",
"discontinuous match",
"search",
"discontinuous search"
],
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.2.2",
"commitizen": "^4.3.0",
"commitlint": "^17.5.1",
"conventional-changelog-cli": "^2.2.2",
"coveralls": "^3.1.1",
"cross-env": "5.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"prettier": "^2.7.1",
"rimraf": "2.6.2",
"rollup": "^2.74.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}