forked from aMarCruz/skip-regex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.47 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
{
"name": "skip-regex",
"version": "1.0.2",
"description": "Micro parser for detection of literal regexes",
"main": "./dist/skip-regex.js",
"module": "./dist/skip-regex.mjs",
"jsnext:main": "./dist/skip-regex.mjs",
"browser": "./index.min.js",
"source": "src/skip-regex.js",
"types": "./index.d.ts",
"files": [
"index.*",
"dist/"
],
"engines": {
"node": ">=4.2"
},
"scripts": {
"test": "nyc mocha ./test/index.js",
"pretest": "rollup -mc",
"k": "karma start ./test/karma.conf.js",
"prek": "rollup -c rollup.browser.js",
"build": "rollup -mc && rollup -c rollup.browser.js",
"lint": "eslint src/*.js test/*.js",
"coverage": "nyc report -r=lcov",
"prepublish": "rm ./dist/* && npm run build && npm test"
},
"keywords": [
"javascript",
"typescript",
"es6",
"micro",
"parser",
"detection",
"regex",
"regexp"
],
"homepage": "https://github.com/aMarCruz/skip-regex",
"repository": {
"type": "git",
"url": "https://github.com/aMarCruz/skip-regex.git"
},
"author": "aMarCruz <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^5.10.0",
"karma": "^3.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rollup": "^0.68.1",
"rollup-plugin-buble": "^0.19.0",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-uglify": "^6.0.0"
}
}