|
1 | 1 | { |
2 | 2 | "name": "refa", |
3 | | - "version": "0.9.1", |
| 3 | + "version": "0.10.0", |
4 | 4 | "description": "A library for finite automata and regular expressions in the context of JS RegExp", |
5 | 5 | "main": "index", |
6 | 6 | "scripts": { |
7 | 7 | "check": "npm run lint && npm run check:dependencies && npx tsc --noEmit && cd tests && npx tsc --noEmit && cd ../scripts && npx tsc --noEmit", |
8 | 8 | "check:dependencies": "npx depcruise --validate .dependency-cruiser.js src", |
9 | 9 | "lint": "npx eslint --ignore-path .gitignore **/*.ts", |
10 | | - |
11 | 10 | "test": "cd tests && mocha -r ts-node/register '**/*.ts'", |
12 | 11 | "test:all": "npm run test -- --reporter=dot --run-transformers --run-stress-test", |
13 | 12 | "test:update": "npm run test -- --update --run-transformers", |
14 | | - |
15 | 13 | "build": "npx rimraf ./index.* .out/** && npx tsc && rollup -c && npm run build:dts", |
16 | 14 | "build:dts": "dts-bundle --main ./.out/index.d.ts --name refa --out ../index.d.ts && npm run scripts:flat-dts && prettier --write ./index.d.ts", |
17 | 15 | "build:docs": "typedoc --treatWarningsAsErrors", |
18 | | - |
19 | 16 | "coverage": "npx nyc --reporter=html --reporter=text npm run test", |
20 | | - |
21 | 17 | "scripts:create-case-folding": "npx ts-node --project scripts/tsconfig.json scripts/create-case-folding.ts", |
22 | 18 | "scripts:create-unicode": "npx ts-node --project scripts/tsconfig.json scripts/create-unicode.ts", |
23 | 19 | "scripts:debug": "npx ts-node --project scripts/tsconfig.json scripts/debug.ts", |
24 | 20 | "scripts:flat-dts": "npx ts-node --project scripts/tsconfig.json scripts/flat-dts.ts", |
25 | 21 | "scripts:perf": "npx ts-node --project scripts/tsconfig.json scripts/perf.ts", |
26 | | - |
27 | 22 | "prepublishOnly": "npm run build" |
28 | 23 | }, |
29 | 24 | "keywords": [ |
|
0 commit comments