-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
134 lines (134 loc) · 3.76 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@bindable-ui/bindable",
"description": "An Aurelia component library",
"version": "1.12.2",
"repository": {
"type": "git",
"url": "https://github.com/bindable-ui/bindable"
},
"license": "MIT",
"devDependencies": {
"@bindable-ui/bindable-icons": "^0.3.2",
"@types/jest": "^29.5.1",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.194",
"@types/node": "^18.16.3",
"async": "^3.2.3",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.2",
"aurelia-cli": "^1.3.1",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^1.2.0",
"aurelia-testing": "^1.0.0",
"aurelia-tools": "^2.0.0",
"autoprefixer": "^9.8.8",
"aws-sdk": "^2.1112.0",
"browser-sync": "^2.27.9",
"connect-history-api-fallback": "^1.6.0",
"cssnano": "^4.1.11",
"debounce": "^1.2.1",
"del": "^3.0.0",
"gulp": "^4.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-if": "^3.0.0",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "5.0.1",
"gulp-watch": "^5.0.1",
"husky": "^2.4.1",
"jest": "^29.5.0",
"jest-cli": "^29.5.0",
"jest-jasmine2": "^29.5.0",
"jest-localstorage-mock": "^2.4.21",
"jest-transform-stub": "^2.0.0",
"js-beautify": "^1.14.3",
"lint-staged": "^8.2.1",
"merge2": "^1.4.1",
"mime-types": "^2.1.35",
"minimatch": "^3.1.2",
"minimist": "^1.2.0",
"postcss-modules": "^1.5.0",
"postcss-url": "^8.0.0",
"prettier": "^1.19.1",
"promise-polyfill": "^8.2.3",
"recursive-readdir": "^2.2.2",
"requirejs": "^2.3.6",
"text": "github:requirejs/text#latest",
"through2": "^3.0.2",
"ts-jest": "^29.1.0",
"ts-mockito": "^2.6.1",
"ts-polyfill": "^3.8.2",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^5.0.4",
"vinyl-fs": "^3.0.3"
},
"peerDependencies": {
"aurelia-dialog": "^2.0.0-rc.7",
"dompurify": "^2.0.7",
"eonasdan-bootstrap-datetimepicker": "^4.17.47",
"jquery": "^3.4.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"select2": "^4.0.13",
"simple-web-worker": "^1.2.0"
},
"dependencies": {
"aurelia-dialog": "^2.0.0-rc.7",
"aurelia-ui-virtualization": "^1.0.0-rc2",
"dompurify": "^2.3.6",
"eonasdan-bootstrap-datetimepicker": "^4.17.49",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"moment-timezone": "^0.5.34",
"select2": "^4.0.13",
"simple-web-worker": "^1.2.0"
},
"scripts": {
"build": "au build-plugin",
"build:pack": "npm run build && npm pack",
"build:serve": "au build-serve-watch",
"start": "au run",
"build-site": "au build",
"prepare": "npm run build",
"preversion": "au test",
"test-coverage": "jest --coverage=true",
"test": "jest --coverage=true",
"test:1": "./jest1.js",
"test:debug": "jest --coverage=false --runInBand --detectOpenHandles --forceExit",
"test:ci": "jest --coverage=true --ci --detectOpenHandles --forceExit",
"update-version": "node ./update-version.js"
},
"engines": {
"node": ">=14.18.0"
},
"main": "dist/commonjs/index.js",
"module": "dist/native-modules/index.js",
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"src/**/*.ts": [
"prettier --write",
"node_modules/tslint/bin/tslint --project tsconfig.json --config tslint.json --fix --format codeFrame",
"git add"
]
}
},
"bugs": {
"url": "https://github.com/bindable-ui/bindable/issues"
},
"homepage": "https://bindable-ui.com"
}