-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "@desertnet/pcre",
"version": "0.0.2",
"description": "Perl compatible regular expressions for JavaScript",
"main": "dist/lib/index.js",
"files": [
"dist",
"wasm"
],
"scripts": {
"build": "rimraf dist && make && babel -s inline -D src -d dist",
"clean": "rimraf dist coverage .nyc_output deps/build",
"lint": "eslint src test",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm test && npm run lint",
"test": "make && cross-env NODE_ENV=test mocha --require @babel/register --throw-deprecation",
"test:coverage": "make && cross-env NODE_ENV=test nyc mocha",
"test:watch": "chokidar src test mock fixtures Makefile --initial -c 'npm t'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desertnet/pcre.git"
},
"keywords": [
"pcre",
"pcre2",
"perl",
"regex"
],
"author": "Eric McCarthy <[email protected]> (https://limulus.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/desertnet/pcre/issues"
},
"homepage": "https://github.com/desertnet/pcre#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.53",
"@babel/core": "^7.0.0-beta.53",
"@babel/preset-env": "^7.0.0-beta.53",
"@babel/register": "^7.0.0-beta.53",
"babel-eslint": "^8.2.5",
"babel-plugin-istanbul": "^4.1.6",
"chokidar-cli": "^1.2.0",
"cross-env": "^5.2.0",
"eslint": "^5.1.0",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2"
}
}