-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "@brainbeatsucf/brainbeats-ui-components",
"version": "1.2.0",
"description": "UI Components for building brain beats scripted applications",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"repository": {
"type": "git",
"url": "git://github.com/BrainBeatsUCF/brainbeats-ui-components.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"files": [
"build"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"author": "Lloyd Dapaah",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-image": "^2.0.5",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^16.9.2",
"csstype": "^2.6.10",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.13.1",
"rollup": "^2.10.9",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}