-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 940 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-search",
"version": "1.0.1",
"description": "Search DOM text",
"main": "dist/bundle.js",
"jsnext:main": "dist/bundle.es.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-test": "browserify test/src.js > test/code.js",
"build": "rollup -c && npm run build-test"
},
"keywords": [
"DOM",
"search"
],
"author": "Quentin Engles <hollowdoor99@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015-rollup": "^1.1.1",
"rollup-plugin-babel": "^2.6.1"
},
"dependencies": {
"dom-node-tostring": "^1.0.0",
"is-regexp": "^1.0.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hollowdoor/dom_search.git"
},
"bugs": {
"url": "https://github.com/hollowdoor/dom_search/issues"
},
"homepage": "https://github.com/hollowdoor/dom_search#readme"
}