-
Notifications
You must be signed in to change notification settings - Fork 143
/
package.json
91 lines (91 loc) · 3.53 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sucrase",
"version": "3.7.1",
"description": "Super-fast alternative to Babel for when you can target modern JS runtimes",
"author": "Alan Pierce <alangpierce@gmail.com>",
"license": "MIT",
"main": "dist/index",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"sucrase": "./bin/sucrase",
"sucrase-node": "./bin/sucrase-node"
},
"scripts": {
"asbuild:untouched": "asc assemblyscript-prototype/assembly/index.ts -b assemblyscript-prototype/build/untouched.wasm -t assemblyscript-prototype/build/untouched.wat --sourceMap --validate --debug",
"asbuild:optimized": "asc assemblyscript-prototype/assembly/index.ts -b assemblyscript-prototype/build/optimized.wasm -t assemblyscript-prototype/build/optimized.wat --sourceMap --validate --optimize",
"asbuild": "yarn asbuild:untouched && yarn asbuild:optimized",
"asrun": "node assemblyscript-prototype/index.js",
"build": "sucrase-node script/build.ts",
"fast-build": "sucrase-node script/build.ts --fast",
"clean": "rm -rf ./build ./dist ./dist-self-build ./example-runner/example-repos",
"generate": "sucrase-node generator/generate.ts",
"benchmark": "sucrase-node benchmark/benchmark.ts",
"microbenchmark": "sucrase-node benchmark/microbenchmark.ts",
"benchmark-react": "sucrase-node benchmark/benchmark-react.ts",
"benchmark-project": "sucrase-node benchmark/benchmark-project.ts",
"lint": "sucrase-node script/lint.ts",
"profile": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/profile",
"profile-project": "node --inspect-brk ./node_modules/.bin/sucrase-node ./benchmark/benchmark-project.ts --profile",
"prepublishOnly": "yarn clean && yarn build",
"release": "sucrase-node script/release.ts",
"run-examples": "sucrase-node example-runner/example-runner.ts",
"test": "yarn lint && yarn test-only",
"test-only": "mocha './test/**/*.ts'",
"test-with-coverage": "nyc mocha './test/**/*.ts'",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "https://github.com/alangpierce/sucrase.git"
},
"keywords": [
"babel",
"jsx",
"typescript",
"flow"
],
"bugs": {
"url": "https://github.com/alangpierce/sucrase/issues"
},
"homepage": "https://sucrase.io",
"devDependencies": {
"@babel/cli": "7.0.0-beta.51",
"@babel/core": "7.0.0-beta.51",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.51",
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.51",
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.51",
"@babel/preset-flow": "7.0.0-beta.51",
"@babel/preset-react": "7.0.0-beta.51",
"@babel/preset-typescript": "7.0.0-beta.51",
"@types/mocha": "^2.2.43",
"@types/mz": "^0.0.32",
"@types/node": "^10.12.9",
"@types/yargs-parser": "^11.0.0",
"codecov": "^3.1.0",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-typescript": "^0.12.0",
"mocha": "^3.5.3",
"nyc": "^12.0.2",
"prettier": "^1.12.1",
"sucrase": "^3.7.1",
"tslint": "^5.9.1",
"tslint-language-service": "^0.9.9",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^16.0.0",
"yargs-parser": "^11.1.0"
},
"dependencies": {
"commander": "^2.12.2",
"lines-and-columns": "^1.1.6",
"mz": "^2.7.0",
"pirates": "^3.0.2"
},
"engines": {
"node": ">=8"
}
}