-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 2.72 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "bitcoin-schema",
"description": "Community driven extensible schemas that enable developers to create interoperable data based applications.",
"homepage": "https://bitcoinschema.org",
"version": "0.0.4",
"main": "docs/index.html",
"bugs": {
"url": "https://github.com/bitcoinschema/schema/issues"
},
"keywords": [
"schema",
"bitcoin",
"bitcoinsv",
"bsv"
],
"author": {
"name": "BitCoinSchema",
"email": "[email protected]",
"url": "https://bitcoinschema.org"
},
"contributors": [
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "19.6.0",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.2",
"conventional-github-releaser": "^3.1.5",
"docsify-cli": "^4.4.4",
"finepack": "^2.12.7",
"git-authors-cli": "^1.0.52",
"gulp": "^5.0.0",
"gulp-autoprefixer": "^9.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-sass": "^6.0.0",
"gulp-strip-css-comments": "^3.0.0",
"gulp-uglify": "^3.0.2",
"lint-staged": "^15.3.0",
"npm-check-updates": "^17.1.13",
"prettier-standard": "^16.4.1",
"sass": "^1.83.1",
"standard": "^17.1.2",
"standard-markdown": "^7.1.0",
"standard-version": "^9.5.0"
},
"engines": {
"node": "*"
},
"files": [
"docs",
"gulpfile.js",
"src"
],
"scripts": {
"build": "gulp build",
"dev": "concurrently \"gulp\" \"npm run server:dev\"",
"lint": "standard-markdown docs/**/*.md",
"postrelease": "npm run release:tags && npm run release:github",
"prerelease": "npm run update:check",
"pretest": "npm run lint",
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"server:dev": "cd docs && browser-sync start --server --files \"index.html, **/*.md, app.min.js, styles.min.css\"",
"start": "docsify start docs",
"test": "echo 'no tests available' && exit 0",
"update": "ncu -u",
"update:check": "ncu -- --error-level 2"
},
"private": true,
"license": "Open BSV",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoinschema/schema/"
},
"lint-staged": {
"package.json": [
"finepack",
"git add"
],
"*.js": [
"prettier-standard",
"git add"
],
"*.md": [
"standard-markdown",
"git add"
]
},
"dependencies": {
"sass": "^1.83.1"
}
}