forked from asciidoctor/asciidoctor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.98 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
61
62
63
64
65
{
"name": "asciidoctor.js",
"version": "1.5.5-1",
"description": "A JavaScript AsciiDoc processor, cross-compiled from the Ruby-based AsciiDoc implementation, Asciidoctor, using Opal",
"main": "dist/npm/asciidoctor-core.min.js",
"files": [
"dist/npm/asciidoctor-core.js",
"dist/npm/asciidoctor-core.min.js",
"dist/npm/asciidoctor-extensions.js",
"dist/npm/asciidoctor-extensions.min.js",
"dist/npm/asciidoctor-docbook.js",
"dist/npm/asciidoctor-docbook.min.js",
"dist/css/asciidoctor.css",
"LICENSE",
"README.adoc"
],
"scripts": {
"test": "node npm/test/jasmine-bower.js && node npm/test/jasmine-bower-min.js && node npm/test/jasmine-npm.js",
"build": "cross-env MINIFY=1 node npm/build.js",
"package": "cross-env MINIFY=1 node npm/build.js && cross-env MINIFY=1 npm run test",
"examples": "node npm/examples.js",
"benchmark": "node npm/benchmark.js",
"release": "cross-env MINIFY=1 node npm/release.js"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor.js.git"
},
"keywords": [
"asciidoc",
"asciidoctor",
"opal",
"javascript",
"library"
],
"authors": [
"Dan Allen (https://github.com/mojavelinux)",
"Guillaume Grossetie (https://github.com/mogztter)",
"Anthonny Quérouil (https://github.com/anthonny)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/asciidoctor/asciidoctor.js/issues"
},
"homepage": "https://github.com/asciidoctor/asciidoctor.js",
"dependencies": {
"opal-npm-wrapper": "0.9.2",
"xmlhttprequest": "~1.7.0"
},
"devDependencies": {
"async": "^1.5.0",
"bower": "^1.5.3",
"browserify": "^13.0.0",
"colors": "1.1.2",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.3",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.7",
"tar-fs": "1.11.1",
"watchify": "^3.7.0"
}
}