forked from slevithan/xregexp
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 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
{
"name": "xregexp",
"version": "4.1.1",
"description": "Extended regular expressions",
"homepage": "http://xregexp.com/",
"author": "Steven Levithan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/slevithan/xregexp.git"
},
"keywords": [
"regex",
"regexp",
"regular expression",
"unicode"
],
"main": "./lib",
"files": [
"src",
"lib",
"tools",
"xregexp-all.js"
],
"scripts": {
"lint": "eslint .",
"babel": "babel src -d lib",
"build-unicode-data": "node tools/scripts/block-regex.js && node tools/scripts/category-regex.js && node tools/scripts/property-regex.js && node tools/scripts/script-regex.js",
"prebuild": "npm run build-unicode-data && npm run lint && npm run babel",
"build": "browserify lib/index.js --standalone XRegExp > xregexp-all.js",
"pretest": "npm run build",
"test": "jasmine JASMINE_CONFIG_PATH=tests/jasmine.json",
"test-saucelabs": "npm run pretest && zuul tests/spec/*.js",
"test-browser": "npm run test-saucelabs -- --local --open",
"prepublish": "npm test"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-transform-xregexp": "^0.0.6",
"babel-preset-env": "^1.4.0",
"browserify": "^16.2.0",
"eslint": "^4.19.1",
"jasmine": "^3.1.0",
"jsesc": "^2.5.1",
"unicode-10.0.0": "^0.7.5",
"unicode-property-value-aliases": "^3.0.0",
"zuul": "^3.11.1"
}
}