-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "xre",
"version": "1.0.5",
"description": "Template string tag for XRegExp.",
"author": "Alice Klipper <[email protected]> (https://vk.com/alice.klipper)",
"keywords": [
"regexp",
"regex",
"xregexp",
"template literals",
"tagged template literals"
],
"main": "index.js",
"repository": "aliceklipper/xre",
"bugs": {
"url": "https://github.com/aliceklipper/xre",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"clean": "rimraf ./index.js ./index.js.map",
"prebuild": "yarn run clean",
"build": "babel ./src/index.js --out-file ./index.js --source-maps",
"prepublish": "yarn run build",
"postpublish": "yarn run clean",
"lint": "eslint ./src/**/*.{js,jsx}",
"test": "jest"
},
"dependencies": {
"taghelper": "^1.0.3",
"xregexp": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"eslint": "^3.19.0",
"eslint-config-google": "^0.8.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-prettier": "^2.1.1",
"jest": "^20.0.4",
"prettier": "^1.4.4",
"regenerator-runtime": "^0.10.5",
"rimraf": "^2.6.1"
},
"jest": {
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.jsx?$"
}
}