generated from trustoverip/specification-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 2.01 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
{
"name": "spec-up",
"version": "1.0.64",
"description": "Technical specification drafting tool that generates rich specification documents from markdown.",
"main": "./index",
"repository": {
"type": "git",
"url": "git+https://github.com/decentralized-identity/spec-up.git"
},
"keywords": [
"spec",
"specs",
"markdown",
"editor",
"standards"
],
"author": "Daniel Buchner",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/decentralized-identity/spec-up/issues"
},
"homepage": "https://github.com/decentralized-identity/spec-up#readme",
"scripts": {
"edit": "node -e \"require('spec-up-t')()\"",
"render": "node --no-warnings -e \"require('spec-up-t')({ nowatch: true })\"",
"dev": "node -e \"require('spec-up-t')({ dev: true })\"",
"xrefs": "GITHUB_API_TOKEN=$(grep GITHUB_API_TOKEN .env | cut -d '=' -f2) node -e \"require('spec-up-t/src/get-xrefs-data.js').getXrefsData(process.env.GITHUB_API_TOKEN)\"",
"removexref": "node remove-xref.js",
"topdf": "node -e \"require('spec-up-t/src/create-pdf.js')\"",
"validatespec": "node -e \"require('spec-up-t/src/json-key-validator.js').runJsonKeyValidatorSync()\"",
"addterms": "node -e \"require('spec-up-t/src/create-term-index.js').createTermIndex()\"",
"freeze": "node -e \"require('spec-up-t/src/freeze.js')\"",
"references": "node -e \"require('spec-up-t/src/references.js')\"",
"help": "cat help.txt",
"menu": "bash ./main.sh",
"postinstall": "npm run --silent postinstall:final",
"postinstall:final": "node postinstall-message.js",
"publish": "node -e \"require('spec-up-t/src/create-term-index.js').createTermIndex()\" && node -e \"require('spec-up-t/src/create-pdf.js')\" && GITHUB_API_TOKEN=$(grep GITHUB_API_TOKEN .env | cut -d '=' -f2) node -e \"require('spec-up-t/src/get-xrefs-data.js').getXrefsData(process.env.GITHUB_API_TOKEN)\" && node -e \"require('spec-up-t')({ nowatch: true })\""
},
"dependencies": {
"dotenv": "^16.4.5",
"spec-up-t": "^1.0.8"
}
}