-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 909 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 909 Bytes
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
{
"name": "flapjs",
"version": "1.0.0",
"description": "This is a vanilla js rewrite of the [`flap.js`](https://github.com/flapjs/webapp) project. Alternatively, you can consider this a minimal [JFLAP](https://www.jflap.org/) clone in javscript so people only need their browser.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js tests/*.test.js",
"lint": "node_modules/.bin/eslint --fix scripts --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flapjs/vanilla.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/flapjs/vanilla/issues"
},
"homepage": "https://github.com/flapjs/vanilla#readme",
"devDependencies": {
"eslint": "^8.32.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.3",
"randexp": "^0.5.3"
}
}