-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.63 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.63 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
50
51
52
53
54
55
56
57
58
{
"name": "livescript-next",
"description": "Enable latest ES features for LiveScript",
"version": "0.1.0-beta.0",
"main": "lib/index.js",
"module": "dist/index.esm.js",
"browser": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"repository": "dk00/livescript-next",
"bugs": "https://github.com/dk00/livescript-next/issues",
"homepage": "https://github.com/dk00/livescript-next#readme",
"files": [
"dist",
"es",
"lib"
],
"dependencies": {
"@babel/types": "^7.9.5"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-async-generator-functions": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-livescript": "^0.0.3",
"livescript": "1.5.0",
"nyc": "^15.0.1",
"rollup": "^2.7.2",
"rollup-plugin-babel": "4.0.0-beta.8",
"rollup-plugin-node-resolve": "^5.2.0",
"tape": "^4.12.1"
},
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "nyc --instrument false -e \".ls\" lsc test",
"posttest": "nyc report -r lcov -r json && mv coverage/coverage-final.json coverage/coverage.json"
},
"keywords": [
"LiveScript",
"ECMAScript",
"esnext",
"es2017",
"es2016",
"es6",
"ast",
"functional",
"babel",
"javascript"
],
"author": "dk00 <dk@csie.org>",
"license": "Unlicense"
}