-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 946 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
29
30
31
32
{
"name": "ts-forth",
"version": "1.0.0",
"description": "A Forth written in Typescript",
"scripts": {
"start": "parcel build src/index.html && parcel src/index.html",
"build": "parcel build src/index.html --public-url .",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "npm run lint && jest --coverage"
},
"author": "John Hardy",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.1",
"jsdom": "^16.4.0",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0"
}
}