-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.44 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
{
"name": "au-datetime-picker",
"description": "Aurelia date time picker plugin.",
"version": "0.0.3-development",
"license": "MIT",
"author": {
"name": "David Klingenberg"
},
"keywords": [
"aurelia",
"datetime picker"
],
"repository": {
"type": "git",
"url": "https://github.com/klinki/au-datetime-picker"
},
"main": "dist/commonjs/index.js",
"typings": "dist/commonjs/au-datetime-picker.d.ts",
"aurelia": {
"build": {
"resources": [
"au-datetime-picker/au-datetime-picker"
]
}
},
"homepage": "https://github.com/klinki/au-datetime-picker",
"bugs": {
"url": "https://github.com/klinki/au-datetime-picker"
},
"scripts": {
"setup": "node setup",
"setup-version": "node setup --Version",
"setup-version-specific": "node setup -v 0.5.0",
"run-watch": "./node_modules/.bin/gulp watch",
"test-watch": "./node_modules/.bin/jest --config=jest.config.json --watch",
"build": "./node_modules/.bin/gulp build",
"jest": "jest --config=jest.config.json --passWithNoTests",
"test": "./node_modules/.bin/jest --config=jest.config.json --passWithNoTests",
"build-all": "npm run setup & npm run build & npm run test",
"travis-deploy-once": "travis-deploy-once",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"semantic-release-dry-run": "semantic-release --dry-run"
},
"dependencies": {
"aurelia-bootstrap-datetimepicker": "^1.1.0",
"eonasdan-bootstrap-datetimepicker": "^4.17.47"
},
"peerDependencies": {
"aurelia-framework": "^1.1.5",
"aurelia-pal": "^1.7.0",
"bootstrap": "^4.0.0",
"date-fns": "^2.0.0-alpha.7",
"font-awesome": "^4.7.0",
"popper.js": "^1.14.0"
},
"devDependencies": {
"@types/file-saver": "^1.3.0",
"@types/jasmine": "^2.2.0",
"@types/node": "^6.0.45",
"aurelia-bootstrapper": "^2.1.1",
"aurelia-cli": "^0.32.0",
"aurelia-framework": "^1.1.5",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal": "^1.7.0",
"aurelia-pal-nodejs": "^1.0.0-beta.2.0.0",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"aurelia-tools": "^1.0.0",
"bootstrap": "^4.0.0",
"browser-sync": "^2.13.0",
"connect-history-api-fallback": "^1.2.0",
"date-fns": "^2.0.0-alpha.7",
"debounce": "^1.0.2",
"del": "^3.0.0",
"event-stream": "^3.3.3",
"fuse-box": "^3.1.3",
"fuse-box-typechecker": "^2.7.1",
"gulp": "^3.9.1",
"gulp-changed-in-place": "^2.0.3",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.7.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^3.1.4",
"gulp-watch": "^4.3.11",
"jasmine-core": "^2.4.1",
"jest": "^22.4.2",
"jsdom": "^11.3.0",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "^0.3.1",
"merge2": "^1.2.0",
"minimatch": "^3.0.2",
"popper.js": "^1.14.0",
"require-dir": "^0.3.2",
"run-sequence": "^2.2.0",
"semantic-release": "^15.0.3",
"through2": "^2.0.1",
"travis-deploy-once": "^4.4.1",
"ts-jest": "^22.4.1",
"tslint": "^5.8.0",
"typescript": ">=1.9.0-dev || ^2.0.0",
"uglify-js": "^3.0.19",
"vinyl-fs": "^2.4.3",
"vinyl-paths": "^2.1.0"
},
"publishConfig": {
"access": "public",
"tag": "next"
}
}