-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 989 Bytes
/
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
{
"name": "dom-regex",
"version": "0.0.3",
"description": "JavaScript library for querying DOM elements with Regular Expressions",
"main": "lib/dom-regex.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --colors -p",
"dev": "webpack --progress --colors --watch"
},
"keywords": [
"Query",
"DOM",
"Attribute",
"Regex",
"Regular Expression",
"QuerySelector",
"QuerySelectorAll"
],
"author": "Kevin Okerlund",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"webpack": "^1.13.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinokerlund/dom-regex.git"
},
"bugs": {
"url": "https://github.com/kevinokerlund/dom-regex/issues"
},
"homepage": "https://github.com/kevinokerlund/dom-regex#readme"
}