-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "object-regexp",
"version": "2.0.0",
"description": "Regular expressions on list of objects",
"keywords": [
"regexp",
"regex",
"regular",
"expression",
"list",
"lexer",
"tokenizer",
"parser",
"object",
"objects",
"test",
"match"
],
"main": "index.js",
"scripts": {
"prepublish": "rollup -c rollup.config.js",
"lint": "eslint ./lib",
"test": "mocha ./tests/**/*Spec.js",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- tests/**/*Spec.js -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"author": "Dawid Rusnak <dawid@drcode.pl>",
"repository": {
"type": "git",
"url": "https://github.com/rangoo94/object-regexp.git"
},
"bugs": {
"url": "https://github.com/rangoo94/object-regexp/issues"
},
"license": "MIT",
"dependencies": {
"js-beautify": "^1.7.5",
"named-js-regexp": "^1.3.3",
"universal-lexer": "^1.0.8"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babelrc-rollup": "^3.0.0",
"coveralls": "^3.0.0",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"rollup": "^0.54.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify": "^2.0.1"
}
}