-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "tag-tree",
"version": "1.0.0",
"description": "Class representing a changing tree of tagged items.",
"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 lint && flow check && jest && tsc",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"keywords": [
"live-set",
"page-parser-tree"
],
"author": "Chris Cowan <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/tag-tree.git"
},
"bugs": {
"url": "https://github.com/StreakYC/tag-tree/issues"
},
"homepage": "https://github.com/StreakYC/tag-tree#readme",
"dependencies": {
"@babel/runtime": "^7.0.0",
"live-set": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@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.0",
"eslint": "^5.6.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",
"lint-staged": "^8.1.7",
"pdelay": "^2.0.0",
"prettier": "^1.17.1",
"rimraf": "^2.6.1",
"typescript": "^3.1.1"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}