This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"name": "@pi-base/core",
"version": "0.1.0",
"description": "Shared pi-base data models",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run peg",
"build": "tsc",
"fmt": "prettier --write **/*.ts",
"fmt:check": "prettier --check **/*.ts",
"lint": "eslint 'src/**/*.ts' --fix",
"lint:check": "eslint 'src/**/*.ts'",
"peg": "pegjs --plugin ts-pegjs --output src/Formula/Grammar.ts src/Formula/Grammar.pegjs",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pi-base/core.git"
},
"keywords": [
"node",
"math",
"topology"
],
"files": [
"lib"
],
"author": "James Dabbs",
"license": "MIT",
"dependencies": {
"remark": "^12.0",
"remark-rehype": "^8.0.0",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"lint-staged": "^10.5.1",
"pegjs": "^0.10.0",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"ts-pegjs": "^0.2.7",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{yml,md,json}": "prettier --write"
}
}