-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "rx4d",
"version": "1.3.0",
"author": "Adrian C. Miranda",
"description": "RegExp 4 dummies",
"main": "index.js",
"unpkg": "index.js",
"module": "index.next.js",
"tonicExampleFilename": "./example/runkit.js",
"homepage": "https://github.com/adriancmiranda/rx4d#readme",
"license": "MIT",
"scripts": {
"upgrade": "npx npm-check -uEy",
"test": "cross-env NODE_ENV=test ava test/*.unit.js --color",
"rollup": "rollup -c .bin/index.js",
"unbuild": "rimraf dist/*.{js,map,gz}",
"build:minify": "npm run rollup -- --environment=SIGN,MINIFY,NODE_ENV:production",
"build:concat": "npm run unbuild && npm run rollup -- --environment=SIGN,INDENT,NODE_ENV:production",
"build": "redrun -s build:concat build:minify",
"dev": "npm test -- --no-cache --watch",
"lint": "eslint --ext .js index.next.js",
"precommit": "redrun -s lint test",
"commitmsg": "commitlint -x @commitlint/config-conventional -e $GIT_PARAMS",
"prerelease": "npm test",
"release": "standard-version"
},
"dependencies": {
"describe-type": "1.0.0-dev.5",
"object-chain": "1.1.0"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/plugin-external-helpers": "7.8.3",
"@babel/plugin-transform-runtime": "7.9.6",
"@babel/polyfill": "7.8.7",
"@babel/preset-env": "7.9.6",
"@babel/register": "7.9.0",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-babel": "5.0.0",
"@rollup/plugin-buble": "0.21.3",
"@rollup/plugin-commonjs": "11.1.0",
"@rollup/plugin-node-resolve": "7.1.3",
"ava": "3.8.2",
"babel-eslint": "10.1.0",
"cross-env": "7.0.2",
"cross-spawn": "7.0.2",
"eslint": "7.0.0",
"eslint-config-airbnb": "18.1.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"git-repo-info": "2.1.1",
"husky": "4.2.5",
"moment": "2.25.3",
"pirate-flag": "0.1.0",
"read-argv": "1.0.0",
"redrun": "8.0.0",
"rimraf": "3.0.2",
"rollup": "2.10.2",
"rollup-plugin-filesize": "9.0.0",
"rollup-plugin-optimize-js": "0.0.4",
"rollup-plugin-terser": "5.3.0",
"standard-version": "8.0.0",
"uglify-es": "3.3.9"
},
"ava": {
"require": [
"./.bin/ava/babel-register.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriancmiranda/rx4d.git"
},
"bugs": {
"url": "https://github.com/adriancmiranda/rx4d/issues"
},
"files": [
"example",
"index.js",
"index.min.js",
"index.min.js.map",
"index.next.js",
"LICENSE",
"README.md"
],
"keywords": [
"regexp"
]
}