-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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": "pocket-lisp-stdlib",
"version": "0.12.1",
"author": {
"name": "Laszlo Vadasz"
},
"homepage": "https://maxinteger.github.io/pocket-lisp-page/",
"repository": "https://github.com/maxinteger/pocket-lisp-stdlib",
"license": "MIT",
"description": "Standard lib for Pocket Lisp",
"keywords": [
"interpreter",
"lisp",
"stdlib"
],
"files": [
"dist"
],
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">= 12.0.0"
},
"dependencies": {
"pocket-lisp": "latest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"@wessberg/rollup-plugin-ts": "^1.3.14",
"codecov": "^3.8.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"husky": "^4.3.0",
"jest": "^26.6.3",
"npm-dts": "^1.3.9",
"prettier": "^2.1.2",
"rollup": "^2.52.3",
"ts-jest": "^26.4.4",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.5",
"decimal.js": "^10.4.2"
},
"scripts": {
"lint": "npm run lint:ci -- --fix",
"lint:ci": "eslint \"src/**/*.ts\" --fix --max-warnings=0",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"test:ci": "npm test -- --collect-coverage",
"report-coverage": "codecov",
"build": "rollup -c",
"watch": "rollup -cw",
"repl": "ts-node -r tsconfig-paths/register src/repl.ts",
"start": "npm run repl",
"::pre-publish": "npm run lint && npm run test && npm run build",
"::publish": "npm publish --access=public",
"publish-patch": "npm run ::pre-publish && npm version patch && npm run ::publish",
"publish-minor": "npm run ::pre-publish && npm version minor && npm run ::publish",
"publish-major": "npm run ::pre-publish && npm version major && npm run ::publish"
}
}