forked from openannotation/annotator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "annotator",
"version": "2.0.0-dev.2",
"description": "Inline annotation for the web. Select text, images, or (nearly) anything else, and add your notes.",
"repository": {
"type": "git",
"url": "https://github.com/okfn/annotator.git"
},
"dependencies": {
"backbone-extend-standalone": "~0.1.2",
"es6-promise": "~0.1.1",
"insert-css": "^0.2.0",
"jquery": "~1.11.0",
"xpath-range": "0.0.5"
},
"devDependencies": {
"assertive-chai": "^1.0.0",
"browserify": "^9.0.8",
"browserify-middleware": "^5.0.2",
"browserify-shim": "^3.8.3",
"clean-css": "^3.1.9",
"concat-stream": "^1.4.8",
"connect": "~2.10.1",
"enhance-css": "^1.1.0",
"esprima": "^2.1.0",
"jscs": "~1.6.0",
"jshint": "~2.5.0",
"jwt-simple": "~0.1.0",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-sauce-launcher": "^0.2.10",
"mocha": "^2.2.4",
"sinon": "^1.14.1",
"through": "^2.3.7",
"uglify-js": "~2.4.12",
"wgxpath": "^0.23.0"
},
"browser": "browser.js",
"browserify": {
"transform": [
"./tools/cssify",
"browserify-shim"
]
},
"browserify-shim": {
"annotator": "global:annotator"
},
"engines": {
"node": ">=0.8 <0.12"
},
"scripts": {
"start": "./tools/serve",
"test": "./node_modules/karma/bin/karma start --single-run",
"lint": "jshint src && jscs src && jshint -c test/.jshintrc test && jscs -c test/.jscsrc test"
}
}