-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.99 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
{
"name": "tabris-decorators",
"version": "3.11.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/eclipsesource/tabris-decorators.git"
},
"license": "BSD-3-Clause",
"scripts": {
"clean": "rm -rf ./dist/*",
"build": "webpack --mode=production && npm run dts",
"dts": "dts-generator --name tabris-decorators --project ./tsconfig-dts.json --out ./dist/index.d.ts --main tabris-decorators/index",
"test": "npm run lint && tsc -p ./tsconfig.json --noEmit && npm run mocha",
"mocha": "ts-mocha --log-error -p ./tsconfig.json ./test/*.spec.ts ./test/*.spec.tsx ./test/*.spec.js ./test/*.spec.jsx",
"test:file": "ts-mocha -p ./tsconfig.json",
"test:bail": "ts-mocha --bail -p ./tsconfig.json",
"lint": "eslint --color --f visualstudio --ext .js,.jsx,.ts,.tsx src test examples",
"safePublish": "npm test && npm run build && npm publish",
"start": "run-script-os",
"start:nix": "./launch.sh",
"start:windows": ".\\launch.cmd"
},
"peerDependencies": {
"tabris": "^3.9.0-dev"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/lodash": "^4.14.123",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"ajv-cli": "^2.1.0",
"chai": "^3.5.0",
"dts-generator": "^2.1.0",
"equals": "^1.0.5",
"eslint": "^7.14.0",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-react": "^7.18.3",
"install": "^0.12.2",
"mocha": "^6.2.0",
"redux": "^4.0.5",
"run-script-os": "^1.0.7",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"tabris": "^3.9.0",
"ts-loader": "^8.4.0",
"ts-mocha": "^6.0.0",
"ts-node": "^10.9.1",
"typescript": "4.8",
"webpack": "^4.46.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
}
}