-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "react-game-of-life",
"version": "3.1.0",
"description": "React game of life component.",
"main": "./src/lib/LifeManager.js",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"mkdirp": "^1.0.4",
"react-scripts": "4.0.3",
"rimraf": "^3.0.2"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prep": "npm run clean && npm run build:lib",
"build:lib": "mkdirp src/lib && npx babel src/components/ -d src/lib/",
"clean": "rimraf src/lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lamdav/react-game-of-life.git"
},
"keywords": [
"react",
"game-of-life",
"react-component"
],
"author": "David Lam",
"license": "MIT",
"bugs": {
"url": "https://github.com/lamdav/react-game-of-life/issues"
},
"homepage": "https://github.com/lamdav/react-game-of-life#readme"
}