-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.38 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
{
"name": "livescript-transform-esm",
"version": "3.0.0",
"description": "Livescript plugin enabling es modules in generated code",
"main": "lib/plugin.js",
"scripts": {
"prepublishOnly": "npm run build && npm run test",
"test": "node_modules/.bin/lsc -r livescript-transform-object-create test",
"build": "node_modules/.bin/lsc dev/build",
"self-build": "node_modules/.bin/lsc dev/self-build",
"clean": "rm -r lib",
"retest": "npm run build && npm test",
"develop": "node_modules/.bin/lsc dev/watch",
"update-dependencies": "ncu -a && npm install && git add . && git commit -m \"Updated dependencies\" && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:livescript-ide/livescript-plugins/transform-es-modules.git"
},
"keywords": [
"livescript",
"plugin",
"transform",
"modules"
],
"author": "Bartosz Matuszewski <[email protected]>",
"license": "BSD-3-Clause",
"devDependencies": {
"chokidar": "^1.7.0",
"diff-lines": "^1.1.0",
"fs-extra": "^4.0.2",
"livescript": "git+https://github.com/gkz/LiveScript.git",
"livescript-transform-esm": "^2.9.8",
"livescript-transform-object-create": "1.0.2"
},
"dependencies": {
"globby": "^7.1.1",
"js-nodes": "0.0.1",
"livescript-compiler": "0.0.37",
"source-map-support": "^0.5.0"
}
}