-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "jspython-cli",
"version": "2.1.18",
"description": "CLI for jspython. Allows you to run jspython (*.jspy) files",
"main": "./lib/public-api.js",
"bin": {
"jspython": "bin/jspython"
},
"typings": "./lib/public-api.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "npx rollup -c rollup.config.dev.js",
"build": "npx rollup -c rollup.config.js",
"build:publish": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspython-dev/jspython-cli.git"
},
"keywords": [
"jspython",
"python",
"interpreter",
"cli"
],
"author": "Pavlo Paska - ppaska@falconsoft-ltd.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jspython-dev/jspython-cli/issues"
},
"homepage": "https://github.com/jspython-dev/jspython-cli#readme",
"dependencies": {
"arg": "^5.0.1",
"jspython-interpreter": "^2.1.10"
},
"devDependencies": {
"rollup": "^2.70.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-typescript2": "^0.31.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.6.3"
}
}