-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
92 lines (92 loc) · 2.87 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@asciidoctor/core",
"version": "2.0.3",
"description": "Asciidoctor - the core library",
"main": "dist/node/asciidoctor.js",
"browser": "dist/browser/asciidoctor.js",
"engines": {
"node": ">=8.11",
"npm": ">=5.0.0",
"yarn": ">=1.1.0"
},
"files": [
"dist",
"LICENSE",
"README.adoc"
],
"scripts": {
"test:graalvm": "node tasks/graalvm.js && ./build/graalvm/bin/node spec/graalvm/run.js",
"test:node": "mocha spec/*/*.spec.js",
"test:browser": "node spec/browser/run.js",
"test": "node tasks/test/unsupported-features.js && npm run test:node && npm run test:browser",
"build": "node tasks/build.js && npm run test && npm run lint",
"build:quick": "node tasks/build.js && npm run test:node && npm run code:lint",
"clean": "npm run clean:all",
"clean:all": "node tasks/clean.js",
"clean:core": "node tasks/clean.js core",
"clean:patch": "node tasks/clean.js patch",
"clean:js": "node tasks/clean.js js",
"dist": "cross-env MINIFY=1 node tasks/dist.js",
"lint": "npm run code:lint && npm run docs:lint",
"code:lint": "standard src/**/*.js spec/**/*.js tasks/**/*.js benchmark/**/*.js",
"package": "cross-env MINIFY=1 node tasks/build.js && cross-env MINIFY=1 npm run test",
"examples": "node tasks/examples.js",
"server": "node tasks/server.js",
"benchmark": "node tasks/benchmark.js",
"docs:lint": "documentation lint src/**",
"docs:build": "documentation build src/** -f html -o build/docs -g",
"docs:serve": "documentation serve src/** -g -w",
"docs": "npm run docs:lint && npm run docs:build",
"travis": "npm run lint && npm run package && npm run docs && npm run examples && npm run test:graalvm"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor.js.git"
},
"publishConfig": {
"access": "public"
},
"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": {
"asciidoctor-opal-runtime": "0.3.0",
"unxhr": "1.0.1"
},
"devDependencies": {
"bestikk-download": "1.0.0",
"bestikk-fs": "1.0.0",
"bestikk-log": "0.1.0",
"bestikk-uglify": "3.0.0",
"chai": "4.1.2",
"cross-env": "5.1.4",
"dirty-chai": "2.0.1",
"documentation": "9.1.1",
"eslint": "5.12.1",
"http-server": "0.11.1",
"mocha": "5.1.1",
"opal-compiler": "1.0.13",
"puppeteer": "1.14.0",
"sinon": "5.0.6",
"standard": "12.0.1"
},
"standard": {
"ignore": [
"src/template-*.js"
]
}
}