-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.62 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
{
"name": "zindagi",
"version": "1.0.2",
"description": "Zindagi is a library to program life-like cellular automata like Conway's Game of Life",
"main": "index.js",
"scripts": {
"build": "babel *.js -d cjs",
"docs": "rm -rf docs && jsdoc -c .jsdoc.json --debug --verbose",
"test": "tape tests/*.cjs",
"coverage": "nyc --reporter=lcov --reporter=text --reporter html npm test | tap-nyc"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./cjs/index.js"
},
"keywords": [
"conway",
"cellular",
"auomata",
"game",
"of",
"life",
"gol"
],
"engines": {
"node": ">=14"
},
"author": "Tarun Batra <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tarunbatra/zindagi.git"
},
"bugs": {
"url": "https://github.com/tarunbatra/zindagi/issues"
},
"homepage": "https://github.com/tarunbatra/zindagi#readme",
"dependencies": {
"@babel/runtime": "^7.12.5"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@pixi/jsdoc-template": "^2.6.0",
"jsdoc": "^3.6.6",
"nyc": "^15.1.0",
"tap-nyc": "^1.0.3",
"tape": "^5.0.1"
},
"babel": {
"presets": [
[
"@babel/env",
{
"debug": true,
"targets": {
"node": "8"
}
}
]
],
"plugins": [
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
}
}