-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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": "re-scaled",
"version": "1.3.3",
"description": "Helpers and utility functions for creating scalable regular expressions",
"private": false,
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"scripts": {
"lint": "tslint --project . --format stylish",
"test": "mocha -r ./node_modules/ts-node/register ./test/**/*.spec.ts",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "tsc --build src",
"dev": "npm run build -- --watch",
"prepublishOnly": "npm run lint && npm test && npm run build",
"postpublish": "npm run clean && git push --follow-tags"
},
"keywords": [
"regex",
"regular",
"expression",
"expressions",
"regular expression",
"regular expressions",
"util",
"utils",
"utility",
"utilities",
"helper",
"helpers",
"readable",
"scalable",
"reusable"
],
"repository": {
"type": "git",
"url": "git+https://github.com/parzh/re-scaled.git"
},
"author": "Dmitry Parzhitsky <parzhitsky@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/parzh/re-scaled/issues"
},
"devDependencies": {
"@parzh/tslint-config": "1.0.1",
"@types/chai": "4.2.22",
"@types/mocha": "9.0.0",
"@types/node": "16.10.2",
"chai": "4.3.4",
"mocha": "9.1.2",
"rimraf": "3.0.2",
"ts-node": "10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"@valuer/main": "1.1.2"
}
}