-
Notifications
You must be signed in to change notification settings - Fork 504
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "verbal-expressions",
"description": "JavaScript Regular expressions made easy",
"version": "1.0.2",
"keywords": [
"regular expressions",
"regex"
],
"homepage": "https://github.com/VerbalExpressions/JSVerbalExpressions",
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"ava": "^3.13.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"grunt": "^1.3.0",
"grunt-ava": "^0.19.0",
"grunt-babel": "^8.0.0",
"grunt-contrib-uglify": "^5.0.0",
"grunt-eslint": "^24.0.0",
"grunt-markdownlint": "^3.1.0",
"grunt-sourcemap-localize": "^0.1.0",
"grunt-umd": "^3.0.0",
"nyc": "^15.1.0"
},
"repository": {
"type": "git",
"url": "git://github.com/VerbalExpressions/JSVerbalExpressions.git"
},
"bugs": {
"url": "https://github.com/VerbalExpressions/JSVerbalExpressions/issues"
},
"main": "dist/verbalexpressions.js",
"license": "MIT",
"scripts": {
"test": "grunt test",
"test:verbose": "grunt test:verbose",
"compile": "grunt compile",
"grunt": "grunt",
"build": "grunt build"
},
"types": "./typings/VerbalExpressions.d.ts",
"engines": {
"node": ">=9.2.0"
},
"dependencies": {},
"prettier": {
"singleQuote": true
}
}