-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "page-parser-tree",
"version": "0.4.0",
"description": "Library to find elements in a dynamic web page",
"main": "js/index.js",
"sideEffects": false,
"scripts": {
"prepare": "rimraf js && babel -s true -d js/ src/ --ignore '**/*.test.js' && flow-copy-source -v src js --ignore '**/*.test.*'",
"test": "yarn run lint && flow check && jest && tsc",
"lint": "eslint . && prettier-check '**/*.js'",
"lint-fix": "eslint . --fix && prettier --write '**/*.js'"
},
"keywords": [
"livetree",
"liveset",
"mutationobserver",
"browser extension"
],
"author": "Chris Cowan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/page-parser-tree.git"
},
"bugs": {
"url": "https://github.com/StreakYC/page-parser-tree/issues"
},
"homepage": "https://github.com/StreakYC/page-parser-tree#readme",
"dependencies": {
"@babel/runtime": "^7.4.5",
"live-set": "^1.0.0",
"matches-selector-ng": "^1.0.0",
"tag-tree": "^1.0.0",
"transducers.js": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^5.16.0",
"eslint-plugin-flowtype": "^3.9.1",
"flow-bin": "^0.98.1",
"flow-copy-source": "^2.0.2",
"husky": "^2.3.0",
"jest": "^24.8.0",
"jsdom": "^11.0.0",
"pdelay": "^2.0.0",
"prettier": "^1.14.0",
"prettier-check": "^2.0.0",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.1",
"typescript": "^3.4.5"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}