-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "meristem",
"version": "2.2.0",
"description": "Procedural text generation using a context-free grammar",
"author": "Forrest Wolf <forrest.weiswolf@gmail.com>",
"main": "dist/meristem.js",
"types": "index.d.ts",
"bugs": "https://github.com/forrestWeiswolf/meristem/issues",
"scripts": {
"test": "jasmine",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"build": "webpack",
"document": "jsdoc *.js -d ./docs -c jsdocConfig.json -R README.md -P package.json"
},
"files": [
"dist/meristem.js"
],
"repository": {
"type": "git",
"url": "https://github.com/ForrestWeiswolf/Meristem.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-loader": "^8.2.2",
"coveralls": "^3.0.2",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"istanbul": "^1.1.0-alpha.1",
"jasmine": "^3.8.0",
"jsdoc": "~3.6.7",
"webpack": "^3.12.0"
}
}