-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "regexp-to-ast",
"version": "0.5.0",
"main": "lib/regexp-to-ast.js",
"repository": "https://github.com/bd82/regexp-to-ast.git",
"author": "Shahar Soel",
"license": "MIT",
"description": "Parses a Regular Expression and outputs an AST",
"keywords": [
"regExp",
"parser",
"regular expression"
],
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-es5": "^1.4.1",
"gitty": "^3.7.0",
"jsonfile": "^5.0.0",
"lodash": "^4.17.15",
"mocha": "^7.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "1.19.1",
"semver": "^7.1.3",
"typescript": "^3.7.3"
},
"scripts": {
"release": "git fetch && git rebase && node scripts/release.js",
"ci_full_flow": "npm-run-all type_check test check_coverage verify_format",
"test": "nyc mocha \"./test/**/*spec.js\"",
"check_coverage": "nyc check-coverage --lines 100 --statements 100 --functions 100",
"format": "prettier --no-editorconfig --write \"**/*.@(ts|js|md)\"",
"verify_format": "prettier --no-editorconfig --list-different \"**/*.@(ts|js)\"",
"type_check": "tsc"
},
"typings": "api.d.ts",
"files": [
"lib",
"LICENSE",
"CHANGELOG.md",
"README.md",
"api.d.ts"
],
"nyc": {
"reporter": [
"lcov",
"text"
],
"exclude": [
"test/**.*"
]
},
"prettier": {
"semi": false,
"tabWidth": 4,
"useTabs": false
}
}