-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.07 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
{
"name": "@formidablejs/console",
"version": "0.0.22",
"description": "The Formidable Console",
"author": "Donald Pakkies",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
"publisher": "formidable/Package.js",
"bugs": "https://github.com/formidablejs/console/issues",
"repository": "https://github.com/formidablejs/console",
"files": [
"lib",
"types"
],
"scripts": {
"build": "npm run imba:build && npm run imba:build:temp",
"imba:build": "imbac src --output=lib --platform=node --format=cjs --clean",
"imba:build:temp": "imbac src --output=.temp --platform=node --clean",
"imba:watch": "imbac -w src --output=lib --platform=node --format=cjs --clean",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"test": "jest --roots test --silent",
"test:watch": "jest --watchAll --roots test --silent"
},
"keywords": [],
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"imba": "^2.0.0-alpha.212",
"imba-shell": "^0.4.0",
"jest": "^28.1.3",
"typescript": "^4.7.4"
}
}