-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 892 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 892 Bytes
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
{
"name": "python-clickjs",
"version": "0.0.2",
"description": "JS port of fabulous Python click argument parsing library",
"main": "src/index.js",
"author": "Ales Saska",
"license": "Apache-2.0",
"scripts": {
"test": "mocha --require @babel/register"
},
"repository": {
"type": "git",
"url": "git@github.com:saskaale/clickjs.git"
},
"dependencies": {
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.4.2"
},
"contributors": [
{
"name": "Ales Saska",
"email": "mail@alessaska.cz",
"url": "http://alessaska.cz"
}
],
"devDependencies": {
"mocha": "^6.0.2"
}
}