-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.83 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
{
"name": "typespy",
"version": "1.0.8",
"description": "",
"main": "dist/index.js",
"license": "MIT",
"bin": "dist/cli/cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "rm -rf dist || true && tsc && chmod +x dist/cli/cli.js",
"prepare": "npm run build",
"prepublish": "npm run test && npm run format && git diff --no-ext-diff --exit-code",
"test": "npm run build && npm run test:default && npm run test:all && npm run test:fnName && npm run test:global && npm run test:magicWord",
"test:default": "babel src/babel/tests/default/in.ts --out-file src/babel/tests/default/out.ts",
"test:all": "babel src/babel/tests/all/in.ts --out-file src/babel/tests/all/out.ts",
"test:fnName": "babel src/babel/tests/fnName/in.ts --out-file src/babel/tests/fnName/out.ts",
"test:global": "babel src/babel/tests/global/in.ts --out-file src/babel/tests/global/out.ts",
"test:magicWord": "babel src/babel/tests/magicWord/in.ts --out-file src/babel/tests/magicWord/out.ts",
"start": "npm run build && node dist/cli/cli.js",
"demo": "DEMO_MODE=true node dist/cli/cli.js",
"format": "prettier --ignore-unknown --write src"
},
"author": "Ahmed Hassanein",
"files": [
"dist"
],
"dependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"body-parser": "^1.20.0",
"express": "^4.18.1",
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"node-notifier": "^10.0.1",
"react": "^17.0.2",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.19",
"@types/babel__template": "^7.4.1",
"@types/express": "^4.17.13",
"@types/node-notifier": "^8.0.2",
"@types/react": "^18.0.15",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}