-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "lispyjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"setup": "npm install && npm run build",
"clean": "rm -r dist/*",
"build": "npx tsc",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"prettier": "npx prettier --write 'src/**/*.ts' 'tst/**/*.ts' 'src/**/*.js'",
"format": "run-s prettier",
"test": "npx mocha -r ts-node/register 'tst/{**/*.spec.ts, *.spec.ts}'",
"super-clean": "rm -r dist node_modules",
"inc": "run-s build prettier lint-fix test",
"cp-resources": "cp -r public dist/",
"release": "run-s clean inc cp-resources",
"repl": "npx ts-node src/repl.ts",
"main": "npx ts-node src/main.ts"
},
"author": "Jeffrey Burton",
"license": "",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"chai": "^4.2.0",
"eslint": "^7.0.0",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"prettier": "2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
}
}