forked from jspython-dev/jspython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.65 KB
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
{
"name": "jspython-interpreter",
"version": "2.1.7",
"description": "JSPython is a javascript implementation of Python language that runs within web browser or NodeJS environment",
"keywords": [
"python",
"interpreter",
"evaluator",
"parser"
],
"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 - ppaska@falconsoft-ltd.com"
},
"license": "BSD 3-Clause",
"bugs": {
"url": "https://github.com/jspython-dev/jspython/issues"
},
"homepage": "https://jspython.dev",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"ace-builds": "^1.4.12",
"eslint": "^7.14.0",
"jest": "^26.6.3",
"rollup": "^2.52.7",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.4.4",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}