forked from slab/parchment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "parchment",
"version": "1.0.9",
"description": "A document model for rich text editors",
"author": "Jason Chen <[email protected]>",
"homepage": "http://quilljs.com/docs/parchment",
"main": "dist/parchment.js",
"files": [
"tsconfig.json",
"dist",
"src"
],
"types": "dist/src/parchment.d.ts",
"devDependencies": {
"istanbul": "~0.4.5",
"jasmine-core": "^2.5.2",
"karma": "^1.6.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-sauce-launcher": "^1.1.0",
"karma-webpack": "^2.0.3",
"ts-loader": "^2.0.3",
"typescript": "^2.2.2",
"webpack": "^2.4.1"
},
"engines": {
"node": ">= 5.3",
"npm": ">= 3.5"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/quilljs/parchment"
},
"scripts": {
"build": "webpack --config webpack.conf.js",
"prepublish": "npm run build",
"test": "karma start",
"test:server": "karma start --no-single-run",
"test:travis": "karma start --browsers saucelabs-chrome --reporters dots,saucelabs"
},
"bugs": {
"url": "https://github.com/quilljs/parchment/issues"
}
}