-
Notifications
You must be signed in to change notification settings - Fork 533
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "annotator",
"version": "2.0.0-alpha.3",
"description": "Annotation for the web. Select text, images, or (nearly) anything else, and add your notes.",
"repository": {
"type": "git",
"url": "https://github.com/openannotation/annotator.git"
},
"dependencies": {
"backbone-extend-standalone": "^0.1.2",
"clean-css": "^3.4.4",
"enhance-css": "^1.1.0",
"es6-promise": "^3.0.2",
"insert-css": "^0.2.0",
"jquery": "^1.11.3",
"xpath-range": "0.0.5"
},
"devDependencies": {
"assertive-chai": "^1.0.0",
"browserify": "^11.2.0",
"browserify-middleware": "^7.0.0",
"concat-stream": "^1.5.0",
"connect": "^3.4.0",
"esprima": "^2.6.0",
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"jwt-simple": "^0.3.1",
"karma": "^0.13.10",
"karma-browserify": "^4.3.0",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sauce-launcher": "^0.2.14",
"mocha": "^2.3.3",
"phantomjs": "^1.9.18",
"serve-static": "^1.10.0",
"sinon": "^1.17.0",
"through": "^2.3.8",
"uglify-js": "^2.4.24",
"wgxpath": "^1.1.0"
},
"browser": "browser.js",
"browserify": {
"transform": [
"./tools/cssify"
]
},
"engines": {
"node": ">=0.10 <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"
}
}