-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "phrasalexpressions",
"version": "1.0.12-alpha",
"description": "Helps to create regular expressions in typescript from phrases.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"serve": "ts-node ./src/index.ts",
"test": "NODE_ENV='test' TS_NODE_PROJECT='./tsconfig.json' mocha --file ./tests/init.ts --require ts-node/register --recursive ./tests/**/*.tests.ts --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fazerty/phrasalExpressions.git"
},
"keywords": [
"regular",
"expressions",
"typescript",
"phrases",
"create",
"generate",
"regexp"
],
"author": "Fabien Dubail",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fazerty/phrasalExpressions/issues"
},
"homepage": "https://github.com/Fazerty/phrasalExpressions#readme",
"dependencies": {
"regexp-tree": "^0.0.86"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}