-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.71 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "valyrian.js",
"version": "5.0.5",
"description": "Lightweight steel to forge PWAs. (Minimal Frontend Framework with server side rendering and other capabilities)",
"source": "lib/index.js",
"main": "lib/index.js",
"module": "lib/index.js",
"unpkg": "dist/valyrian.min.js",
"browser": "dist/valyrian.min.js",
"repository": "git@github.com:Masquerade-Circus/valyrian.js.git",
"author": "Masquerade <christian@masquerade-circus.net>",
"license": "Apache-2.0",
"private": false,
"files": [
"dist",
"lib",
"plugins"
],
"keywords": [
"valyrian.js",
"valyrianjs",
"valyrian",
"ui",
"framework",
"virtual dom",
"vdom",
"hyperscript",
"front-end",
"server side rendering",
"ssr",
"progressive web app",
"pwa"
],
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"dev:source": "cross-env NODE_ENV=development node rollupSource.js",
"dev:test": "cross-env NODE_ENV=development nodemon -w ./test -w ./lib -w ./plugins --exec 'mocha --bail --timeout 10000 --slow 0 --require ./register \"test/**/*_test.js\"'",
"dev:test:nyc": "cross-env NODE_ENV=development nodemon -w ./test -w ./lib -w ./plugins --exec 'nyc --reporter=text --reporter=lcov mocha --timeout 10000 --slow 0 --require ./register \"test/**/*_test.js\"'",
"build": "yarn build:source && yarn remark",
"build:source": "cross-env NODE_ENV=production node rollupSource.js",
"test": "cross-env NODE_ENV=development nyc mocha --timeout 10000 --require ./register \"test/**/*_test.js\"",
"coverage": "nyc report --reporter=lcov",
"remark": "remark . -o",
"commit": "git add . && git-cz",
"release": "release-it --verbose",
"release-test": "release-it --dry-run --verbose"
},
"dependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"csso": "^4.2.0",
"favicons": "^6.2.0",
"form-data": "^3.0.0",
"node-fetch": "^2.6.1",
"parse5": "^6.0.1",
"purgecss": "3.0.0",
"rollup": "^2.34.1",
"rollup-plugin-filesize": "^9.0.2",
"rollup-plugin-includepaths": "^0.2.4",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"source-map": "^0.7.3",
"sucrase": "^3.16.0"
},
"devDependencies": {
"@release-it/conventional-changelog": "^2.0.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"dayjs": "^1.9.6",
"eslint": "^7.14.0",
"eslint-plugin-sonarjs": "^0.5.0",
"expect": "^26.6.2",
"faker": "^5.1.0",
"fastify": "^3.9.1",
"mocha": "^8.2.1",
"node-dev": "^6.2.0",
"nyc": "^15.1.0",
"release-it": "^14.2.2",
"remark-cli": "^9.0.0",
"remark-toc": "^7.0.0",
"yargs": "^16.1.1"
},
"nyc": {
"exclude": [
"test",
"plugins/utils",
"dist"
]
},
"remarkConfig": {
"plugins": [
"toc"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release-it": {
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": "conventionalcommits"
}
},
"git": {
"requireCleanWorkingDir": false
},
"github": {
"release": true
},
"npm": {
"publish": true
},
"hooks": {
"before:init": [
"yarn test"
],
"after:bump": [
"yarn build"
],
"after:@release-it/conventional-changelog": [
"yarn remark"
]
}
},
"resolutions": {
"minimist": ">=1.2.5"
}
}