-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "react-micdrop",
"version": "0.2.1",
"description": "Audio visualisation library for React",
"repository": "https://github.com/devlucky/react-micdrop",
"main": "dist/es5/index.js",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"dependencies": {
"@types/jest": "^19.2.3",
"@types/lodash.chunk": "^4.2.2",
"@types/lodash.sum": "^4.0.2",
"lodash.chunk": "^4.2.0",
"lodash.sum": "^4.0.2"
},
"devDependencies": {
"@atlaskit/button": "^9.0.5",
"react-video-renderer": "^2.3.1",
"ts-react-toolbox": "^0.2.2"
},
"engines": {
"node": ">=8.5.0"
},
"scripts": {
"bootstrap": "ts-react-toolbox init",
"dev": "ts-react-toolbox dev",
"test": "ts-react-toolbox test",
"test:ci": "ts-react-toolbox test --runInBand --coverage",
"build": "ts-react-toolbox build",
"release": "ts-react-toolbox release",
"lint": "ts-react-toolbox lint",
"static": "ts-react-toolbox publish",
"format": "ts-react-toolbox format",
"analyze": "ts-react-toolbox analyze"
},
"peerDependencies": {
"react": "^16.4.2"
},
"resolutions": {
"jsdom": "11.11.0",
"typescript": "2.8.1",
"styled-components": "3.2.6"
},
"files": [
"dist"
],
"keywords": []
}