-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
{
"name": "starfield-react",
"version": "3.0.1",
"description": "A React component that draws a Starfield on a canvas dom element.",
"author": "Christopher Decoster",
"license": "MIT",
"repository": "https://github.com/impaler/starfield-react",
"main": "dist/starfield-react.js",
"umd:main": "dist/starfield-react.umd.js",
"module": "dist/starfield-react.mjs",
"source": "src/index.ts",
"types": "dist/src/starfield-react.d.ts",
"scripts": {
"clean": "rm -rf dist && rm -rf example/dist",
"dev:example": "parcel ./example/index.html --out-dir example/dist",
"dev:build": "microbundle watch",
"build": "microbundle src/index.ts --target web --output dist",
"test": "jest",
"prepublish": "npm run clean && npm run test && npm run build"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.6.0",
"@testing-library/react": "9.2.0",
"@types/jest": "24.0.18",
"@types/react": "16.8.17",
"@types/react-dom": "16.8.4",
"babel-jest": "24.9.0",
"jest": "24.9.0",
"jest-canvas-mock": "2.1.1",
"microbundle": "0.11.0",
"parcel": "1.12.3",
"react": "16.10.1",
"react-dat-gui": "4.0.0",
"react-dom": "16.10.1"
},
"keywords": [
"react",
"scifi",
"stars",
"starfield"
]
}