This repository has been archived by the owner on Dec 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 275
/
package.json
60 lines (60 loc) · 1.59 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
{
"name": "pdf-annotate.js",
"version": "0.0.0",
"description": "Annotation layer for pdf.js",
"main": "dist/pdf-annotate.js",
"scripts": {
"test": "karma start --single-run",
"start": "./scripts/web",
"build": "MINIFY=1 webpack",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/instructure/pdf-annotate.js.git"
},
"keywords": [
"pdf",
"annotation"
],
"author": "Matt Zabriskie",
"license": "MIT",
"bugs": {
"url": "https://github.com/instructure/pdf-annotate.js/issues"
},
"homepage": "https://github.com/instructure/pdf-annotate.js#readme",
"devDependencies": {
"babel-core": "6.7.4",
"babel-loader": "6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul-instrumenter-loader": "^0.2.0",
"karma": "^0.13.22",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"object-assign": "^4.0.1",
"pdfjs-dist": "1.4.162",
"simulant": "^0.2.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"twitter-text": "^1.13.4",
"webpack": "1.12.14",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"create-stylesheet": "^0.3.0",
"object-assign": "^4.0.1"
}
}