-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.51 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.51 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
{
"name": "lively.source-transform",
"version": "0.1.7",
"description": "EcmaScript 6 classes for live development",
"type": "module",
"scripts": {
"test": "mocha-es6 tests/*-test.js",
"build": "node tools/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/LivelyKernel/lively.source-transform.git"
},
"keywords": [
"LivelyWeb",
"JavaScript",
"Live Programming"
],
"author": "Robert Krahn",
"license": "MIT",
"bugs": {
"url": "https://github.com/LivelyKernel/lively.source-transform/issues"
},
"homepage": "https://github.com/LivelyKernel/lively.source-transform",
"dependencies": {
"lively.ast": "https://github.com/LivelyKernel/lively.ast",
"lively.lang": "https://github.com/LivelyKernel/lively.lang",
"lively.classes": "https://github.com/LivelyKernel/lively.classes",
"@babel/plugin-syntax-import-meta": "7.10.4",
"@babel/plugin-proposal-dynamic-import": "7.18.6",
"@babel/plugin-transform-modules-systemjs": "7.29.4",
"@babel/types": "7.26.0",
"@babel/core": "7.26.10"
},
"devDependencies": {
"lively.vm": "*",
"babel-core": "^6.16.0",
"babel-plugin-external-helpers": "^6.8.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.6.1"
},
"systemjs": {
"main": "index.js"
}
}