-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "@fauton/fa",
"version": "0.0.2",
"description": "A package to work with finite automata",
"main": "dist/libs/index.js",
"typings": "dist/libs/index.d.ts",
"files": [
"dist/libs"
],
"scripts": {
"prebuild": "del-cli ./dist",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"build": "tsc --sourceMap false",
"build:watch": "tsc -w",
"lint": "npx eslint \"./libs\" --ext tsx,ts",
"lint:fix": "npx eslint \"./libs\" --ext tsx,ts --fix",
"format": "npx prettier ./libs/**/*.{ts,js} --write",
"test": "npx jest --runInBand"
},
"keywords": [
"finite-automaton",
"deterministic-finite-automaton",
"non-deterministic-finite-automaton",
"epsilon-finite-automaton"
],
"author": "Safwan Shaheer <devorein00@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Devorein/fauton.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"shortid": "^2.2.16"
},
"devDependencies": {}
}