-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.42 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.42 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "react-alphabet-soup",
"version": "0.0.9",
"description": "Create super cool text animations based on an alphabet soup concept",
"license": "MIT",
"repository": "OrigenStudio/react-alphabet-soup",
"main": "dist/index.js",
"author": {
"name": "Origen Studio",
"email": "hello@origen.studio",
"url": "https://github.com/OrigenStudio/react-alphabet-soup"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint .",
"flow": "flow check",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run docs && npm run clean && npm run flowbuild",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"prepublish": "yarn build",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"generator-nod"
],
"dependencies": {
"classnames": "2.2.6",
"d3-delaunay": "4.1.5",
"d3-polygon": "1.0.5",
"lodash": "4.17.11",
"react-container-dimensions": "1.4.1",
"recompose": "0.30.0",
"units-css": "0.4.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/preset-flow": "7.0.0",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"documentation": "9.3.0",
"eslint": "5.15.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-flowtype": "3.4.2",
"eslint-plugin-flowtype-errors": "4.0.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-prettier": "3.0.1",
"flow-bin": "0.94.0",
"flow-copy-source": "2.0.3",
"husky": "1.3.1",
"jest": "24.1.0",
"lint-staged": "8.1.5",
"opn-cli": "4.0.0",
"prettier": "1.16.4",
"rimraf": "2.6.3",
"standard-changelog": "2.0.7"
},
"peerDependencies": {
"@material-ui/core": "3.9.3",
"react": "16.8.6",
"react-dom": "16.8.6"
}
}