-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "@fabrix/regexdot",
"version": "1.0.1",
"repository": "git@github.com:fabrix-app/regexdot.git",
"description": "Mapped Object patterns into RegExp",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "scott-wyatt",
"email": "scottwyatt86@gmail.com",
"url": "https://cali-style.com"
},
"inspiration": {
"name": "Luke Edwards",
"email": "luke.edwards05@gmail.com",
"url": "lukeed.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"release": "standard-version",
"build": "tsc -p ./lib/tsconfig.release.json",
"lint": "tslint -p ./lib",
"watch": "tsc -w -p ./lib/tsconfig.release.json",
"pre-test": "run-s clean lint build",
"compile": "npm run clean && npm run build",
"clean": "rm -rf dist",
"test": "npm run clean && npm run lint && npm run build && nyc mocha"
},
"pre-commit": [
"test"
],
"files": [
"*.d.ts",
"dist"
],
"keywords": [
"regexp"
],
"devDependencies": {
"@types/node": "~12.7.8",
"mocha": "^6",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"standard-version": "^7.0.0",
"supertest": "^3.3.0",
"tslib": "~1.9.0",
"tslint": "~5.10.0",
"tslint-microsoft-contrib": "~5.0.3",
"tsutils": "~3.9.1",
"typescript": "~3.3.4000",
"typescript-closure-compiler": "^1.8.11"
}
}