-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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
{
"name": "jsvotable",
"logo": {
"file": "./jsvotable_logo.png"
},
"version": "2.0.2",
"description": "VOTable parser",
"directories": {
"src": "source directory",
"doc": "Documentation",
"test": "test",
"example": "some examples",
"minify": "Uglifies all js scripts"
},
"devDependencies": {
"brfs": "~1.4.3",
"chai": "^3.5.0",
"domparser": "^0.1.1",
"http-server": "^0.11.1",
"ink-docstrap": "^1.3.0",
"jquery": "^3.3.1",
"jsdoc": "^3.4.2",
"jsdom": "~9.6.0",
"jsdom-global": "~2.1.0",
"mocha": "^3.1.1",
"requirejs": "^2.3.2",
"uglify-js": "^2.7.3",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"test": "mocha -r jsdom-global/register --reporter spec",
"doc": "jsdoc -r src -t ./node_modules/ink-docstrap/template/ -d ./doc -R ./README.md",
"start": "http-server -d -o",
"build:prod": "r.js -o minify/minify.js api_version=$npm_package_version optimize=uglify2",
"build:dev": "r.js -o minify/minify.js api_version=$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malapert/JsVotable.git"
},
"keywords": [
"VOTable",
"parser"
],
"author": "Jean-Christophe Malapert <jcmalapert@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/malapert/JsVotable/issues"
},
"homepage": "https://github.com/malapert/JsVotable#readme"
}