This repository was archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.63 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
{
"name": "aurelia-quill-plugin",
"version": "0.1.6",
"description": "A Quil wrapper for Aurelia.",
"scripts": {
"prepush": "./node_modules/.bin/gulp prepare-release --bump=patch",
"push": "git add --all && git commit -m \"$(date)\" && git push origin master && npm publish",
"test": "gulp test"
},
"keywords": [
"aurelia",
"plugin",
"quil"
],
"homepage": "https://github.com/arabsight/aurelia-quill-plugin",
"bugs": {
"url": "https://github.com/arabsight/aurelia-quill-plugin/issues"
},
"license": "MIT",
"author": "Rabah Ghodbane <[email protected]>",
"main": "dist/commonjs/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/arabsight/aurelia-quill-plugin"
},
"devDependencies": {
"aurelia-tools": "^2.0.0",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-modules-systemjs": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"conventional-changelog": "1.1.7",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-bump": "^3.1.3",
"gulp-eslint": "^4.0.1",
"gulp-yuidoc": "^0.1.2",
"isparta": "^4.1.1",
"istanbul": "^1.0.0-alpha.2",
"jasmine-core": "^2.8.0",
"karma": "^2.0.5",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^1.1.2",
"karma-jspm": "2.2.3",
"object.assign": "^4.1.0",
"require-dir": "^0.3.2",
"run-sequence": "^2.2.1",
"vinyl-paths": "^2.1.0",
"yargs": "^10.0.3"
},
"jspm": {
"registry": "npm",
"main": "index",
"format": "amd",
"directories": {
"dist": "dist/amd"
},
"devDependencies": {
"aurelia-binding": "^1.3.0",
"aurelia-dependency-injection": "^1.3.2",
"aurelia-pal": "^1.4.0",
"aurelia-polyfills": "^1.0.0",
"aurelia-templating": "1.4.0",
"quill": "^1.3.2"
}
},
"aurelia": {
"build": {
"resources": [
"quill-editor"
]
}
}
}