forked from LionWeb-io/lionweb-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "lioncore-typescript",
"version": "0.4.0",
"description": "LionWeb core for {Java|Type}Script",
"main": "dist/src-pkg/index.js",
"types": "dist/src-pkg/index.d.ts",
"typings": "dist/src-pkg/index.d.ts",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LIonWeb-org/lioncore-typescript.git"
},
"bugs": {
"url": "https://github.com/LIonWeb-org/lioncore-typescript/issues"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@types/xml2js": "^0.4.12",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"chai": "^4.3.8",
"eslint": "^8.49.0",
"littoral-templates": "^0.2.2",
"mocha": "^10.2.0",
"nanoid": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"xml2js": "^0.6.2"
},
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "find dist/src-test -type d | tac | xargs npx mocha",
"generate-artifacts": "npm run build && node dist/src-build/generate-artifacts.js",
"lint": "eslint src-build/ src-cli/ src-pkg/ src-test/ src-utils/"
}
}