This repository was archived by the owner on Dec 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 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
50
{
"name": "m-js",
"version": "1.0.0",
"description": "The javascript backend for M",
"main": "build/index.js",
"repository": "https://github.com/tkaden4/m-js",
"author": "Kaden Thomas",
"license": "ISC",
"private": false,
"bin": {
"mjs": "build/index.js"
},
"scripts": {
"clean": "rimraf -r build bootstrap",
"build:lib": "tsc -p tsconfig.lib.json",
"build:cli": "tsc -p tsconfig.cli.json",
"build:bundle": "yarn run build:lib && yarn run build:stub && rollup --config ./configs/bootstrap/rollup.config.js",
"build:rebundle": "yarn run clean && yarn run build:bundle",
"build:stub": "npx babel --config-file ./configs/bootstrap/stub.babelrc m.js --out-dir build/stub/"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.5.4",
"@babel/standalone": "^7.5.4",
"@types/escodegen": "^0.0.6",
"@types/estree": "^0.0.39",
"@types/lodash": "^4.14.136",
"@types/meow": "^5.0.0",
"@types/node": "^12.6.2",
"babel-plugin-provide-modules": "^1.0.3",
"babel-preset-env": "^1.7.0",
"copyfiles": "^2.1.1",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"rollup-plugin-includepaths": "^0.2.3",
"typescript": "^3.5.3"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"arcsecond": "^2.0.0",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"core-js": "3",
"escodegen": "^1.11.1",
"lodash": "^4.17.14",
"meow": "^5.0.0"
}
}