-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.7 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
{
"name": "jspython-interpreter",
"version": "2.1.15",
"description": "JSPython is a javascript implementation of Python language that runs within web browser or NodeJS environment",
"keywords": [
"python",
"interpreter",
"evaluator",
"parser"
],
"type": "module",
"main": "dist/jspython-interpreter.min.js",
"module": "dist/jspython-interpreter.esm.js",
"typings": "dist/interpreter.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"test:dev:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
"build": "npx rollup -c",
"build:publish": "npx rollup -c && npm publish",
"dev": "npx rollup --config rollup.config.dev.js --watch",
"lint": "npx eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspython-dev/jspython.git"
},
"author": {
"name": "Pavlo Paska - [email protected]"
},
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/jspython-dev/jspython/issues"
},
"homepage": "https://jspython.dev",
"dependencies": {},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.0",
"@types/jest": "^29.0.4",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"ace-builds": "^1.15.0",
"eslint": "^8.32.0",
"husky": "^8.0.3",
"jest": "^29.4.1",
"rollup": "^3.11.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.4"
}
}