-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
64 lines (64 loc) · 1.64 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
{
"name": "quill-placeholder-module",
"version": "0.3.1",
"description": "Quill module for inserting placeholders",
"main": "dist/placeholder-module.js",
"scripts": {
"prepublishOnly": "npm run test && npm run build",
"test": "karma start --single-run",
"test-watch": "karma start",
"build": "webpack",
"dev": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspaine/quill-placeholder-module.git"
},
"keywords": [
"quill",
"placeholder",
"template"
],
"author": "James Paine <painejs@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jspaine/quill-placeholder-module/issues"
},
"homepage": "https://github.com/jspaine/quill-placeholder-module#readme",
"devDependencies": {
"@types/quill": "0.0.31",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"copy-webpack-plugin": "^4.0.1",
"husky": "^0.14.3",
"jquery": "^3.2.1",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mocha": "^3.4.2",
"parchment": "^1.1.0",
"quill": "^1.2.0",
"ts-loader": "^2.2.2",
"typescript": "^2.4.1",
"webpack": "^3.1.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"typings": "./dist/src/placeholder-module.d.ts",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
}
}