forked from slevithan/xregexp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
{
"name": "xregexp",
"version": "4.0.0-next",
"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",
"xregexp-all.js",
"LICENSE"
],
"scripts": {
"lint": "eslint src tests",
"babel": "babel src -d lib",
"prebuild": "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.4",
"babel-preset-env": "^1.4.0",
"browserify": "^12.0.1",
"eslint": "^3.19.0",
"jasmine": "^2.5.3",
"zuul": "^3.11.1"
}
}