-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@k14v/rexpmat",
"version": "0.0.3",
"description": "Create regular expression from string using printf format",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=html --reporter=text ava",
"test:watch": "ava --watch",
"build": "babel src --out-dir=lib --ignore=**/*.spec.js",
"watch": "npm run build -- --watch",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"coverage": "codecov",
"release": "release-it -n"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm test"
}
},
"repository": {
"type": "git",
"url": "[email protected]:k14v/rexpmat.git"
},
"keywords": [
"regexp",
"regular",
"expression",
"sprintf"
],
"author": "",
"license": "MIT",
"babel": {
"presets": [
"@babel/preset-env"
]
},
"ava": {
"files": [
"src/**/*.spec.js"
],
"require": [
"@babel/register",
"@babel/polyfill"
]
},
"nyc": {
"exclude": [
"src/*.spec.js"
]
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@babel/register": "^7.0.0",
"ava": "^1.0.0-rc.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.1.0",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.1.4",
"nyc": "^14.1.1",
"release-it": "^12.4.1",
"sinon": "^7.1.1"
},
"dependencies": {
"@k14v/printf-tokenize": "0.0.5"
}
}