-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.43 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
{
"name": "tjsx",
"version": "1.0.3",
"description": "",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover ./node_modules/.bin/_mocha",
"test:unit": "istanbul cover ./node_modules/.bin/_mocha",
"test:functional": "cd test-functional && npm i && npm start --silent",
"lint": "eslint --fix 'lib/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fabiosantoscode/tjsx.git"
},
"files": [
"lib"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fabiosantoscode/tjsx/issues"
},
"homepage": "https://github.com/fabiosantoscode/tjsx#readme",
"devDependencies": {
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"htmlparser2": "3.9.2"
},
"iWouldNeverSpecifyThisAsADependencyOfAnyKindBecauseICareAboutYouAndThinkDependencyHellIsRetarded": {
"react": "Like I said, never.",
"react-dom": "nah",
"babel-core": "nope!"
},
"eslintConfig": {
"extends": "standard",
"globals": {
"before": false,
"it": false,
"describe": false
}
},
"pre-commit": [
"lint",
"test"
]
}