-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "react-floco",
"version": "0.0.6",
"description": "Conditional rendering helpers for react",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"lint": "eslint . --ext .ts,.tsx && remark .",
"dev": "tsc --watch",
"tdd": "mocha -r ts-node/register -r test/helpers --watch-extensions ts,tsx -b -w test/*.spec.*",
"test": "mocha -r ts-node/register -r test/helpers -b test/*.spec.*",
"coverage": "nyc mocha -r ts-node/register -r test/helpers -b test/*.spec.*",
"coveralls": "npm run coverage && cat coverage/lcov.info | coveralls"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dacre-denny/react-floco.git"
},
"keywords": [
"react",
"control flow",
"declarative",
"conditional",
"switch",
"case",
"rendering"
],
"author": "Dacre Denny",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.22",
"@types/enzyme": "^3.10.9",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.0",
"@types/react": "^17.0.30",
"@types/sinon": "^10.0.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"chai": "^4.3.4",
"coveralls": "^3.1.1",
"enzyme": "^3.11.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.2",
"jsdom": "^18.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-cli": "^10.0.0",
"remark-lint-list-item-indent": "^3.1.0",
"remark-preset-lint-recommended": "^6.1.1",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.3.0",
"tslint": "^5.20.1",
"typescript": "^4.4.4"
}
}