-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
28 lines (28 loc) · 897 Bytes
/
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
{
"name": "nfa-to-dfa",
"type": "module",
"version": "0.0.2",
"description": "An application for visually converting NFAs to DFAs",
"repository": {
"type": "git",
"url": "https://github.com/joeylemon/nfa-to-dfa"
},
"author": "Alex Klibisz, Connor Minton, Camille Williford, Joey Lemon, Lauren Proctor",
"scripts": {
"start": "browser-sync start -s -f src --no-notify --host localhost --port 8000",
"test": "mocha --require should --global global,document 'src/js/test/*.test.js'",
"lint": "eslint src --ext .js,.ts --fix"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jsdom": "^16.6.0",
"mocha": "^8.4.0",
"should": "^13.2.3"
},
"dependencies": {}
}