forked from c-jacquin/react-hifi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.33 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-hifi",
"version": "0.0.0-development",
"description": "A set of react components wich provides simple abstraption to manipulate HTML5 AudioContext API (Equalizer, visualisation, stereo, basic controls)",
"keywords": [
"audio",
"react",
"react-sound",
"html5",
"equalizer",
"audio player",
"nuclear"
],
"main": "dist/react-hifi.umd.js",
"module": "dist/react-hifi.es5.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "Charles Jacquin <charles.jacquin@autistici.org>",
"repository": {
"type": "git",
"url": "https://github.com/charjac/react-hifi.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"start": "styleguidist server",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.tsx' 'test/**/*.tsx'",
"prebuild": "rimraf dist && rimraf docs/index.html && rimraf docs/build",
"build": "tsc --module commonjs -p tsconfig.prod.json && rollup -c rollup.config.ts && styleguidist build",
"test": "jest --coverage --config jest.json --detectOpenHandles --forceExit",
"test:watch": "jest --coverage --watch -config jest.json",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"peerDependencies": {
"react": "^16.8.6"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/enzyme": "^3.10.3",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^24.0.15",
"@types/jsdom": "^12.2.4",
"@types/node": "^12.6.8",
"@types/react": "^16.8.23",
"@types/react-test-renderer": "^16.8.3",
"chart.js": "^2.8.0",
"colors": "^1.3.3",
"commitizen": "^4.0.3",
"core-js": "^3.1.4",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^3.0.2",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"file-loader": "^4.1.0",
"husky": "^3.0.1",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"jest-environment-jsdom-fourteen": "^0.1.0",
"jsdom": "^15.1.1",
"lint-staged": "^9.2.1",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.18.2",
"prompt": "^1.0.0",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-docgen": "^4.1.1",
"react-docgen-typescript": "^1.12.5",
"react-docgen-typescript-loader": "^3.1.0",
"react-dom": "^16.8.6",
"react-styleguidist": "^9.1.12",
"react-test-renderer": "^16.8.6",
"replace-in-file": "^4.1.1",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.0",
"semantic-release": "^15.13.18",
"shelljs": "^0.8.3",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3",
"webpack": "^4.37.0"
},
"dependencies": {}
}