-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 710 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 710 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
{
"version": "1.0.3",
"name": "transcrypt-loader",
"description": "Code in Python 3. Bundle to Javascript.",
"license": "Apache-2.0",
"keywords": [
"python",
"transcrypt",
"transpiler",
"webpack",
"bundler",
"loader"
],
"repository": {
"type": "git",
"url": "https://github.com/QQuick/Transcrypt/tree/parcel-bundler2"
},
"main": "__target_es5__/index.js",
"scripts": {
"build": "python3 -m transcrypt --build --map --nomin index.py && babel __target__/ -d ./__target_es5__/"
},
"dependencies": {
"loader-utils": "^1.2.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3"
}
}