-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.35 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
{
"name": "basiljs.github.io",
"version": "0.1.0",
"description": "the docs for Basil.js",
"scripts": {
"dev": "npm-run-all --parallel webpack:dev jekyll:dev",
"build": "npm run build:api-markup && npm run webpack:prod && bundle exec jekyll build",
"test": "echo \"no test specified\" && exit 0",
"webpack:dev": "cross-env NODE_ENV=development webpack --progress --info-verbosity --colors --config webpack/webpack.config.dev.js",
"webpack:prod": "cross-env NODE_ENV=production webpack --config webpack/webpack.config.prod.js --colors",
"jekyll:dev": "bundle exec jekyll serve --livereload --incremental --limit_posts 5",
"jekyll:prod": "JEKYLL_ENV=production bundle exec jekyll build",
"documentationjs": "documentation",
"update-and-generate": "sh ./bootstrap-scripts/update-and-generate.sh",
"build:api-markup": "npm run update-and-generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basiljs/basiljs.github.io.git"
},
"keywords": [
"Basil.js",
"extendscript",
"InDesign"
],
"author": "Fabian 'fabiantheblind' Morón Zirfas <[email protected]> (http://fabianmoronzirfas.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/basiljs/basiljs.github.io/issues"
},
"homepage": "https://github.com/basiljs/basiljs.github.io#readme",
"devDependencies": {
"@babel/core": "7.11.0",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/runtime": "7.11.0",
"acorn": "8.0.1",
"autoprefixer": "9.8.2",
"babel-loader": "8.1.0",
"basiljs": "github:basiljs/basil.js#develop",
"cross-env": "7.0.2",
"css-loader": "3.6.0",
"cssnano": "4.1.10",
"cz-conventional-changelog": "3.0.2",
"documentation": "13.0.2",
"eslint": "7.9.0",
"eslint-config-unobtrusive": "1.2.5",
"eslint-plugin-babel": "5.3.1",
"extract-loader": "5.1.0",
"file-loader": "6.0.0",
"flexsearch": "0.6.32",
"fs-extra": "9.0.1",
"husky": "4.2.5",
"jquery": "3.5.1",
"lodash": "4.17.20",
"node-sass": "4.14.1",
"normalize.css": "8.0.1",
"npm-run-all": "4.1.5",
"p5": "1.1.9",
"path-exists": "4.0.0",
"postcss-cli": "7.1.1",
"postcss-load-config": "2.1.0",
"postcss-loader": "3.0.0",
"sass-loader": "9.0.2",
"ts-loader": "8.0.1",
"typescript": "3.9.7",
"webpack": "4.44.0",
"webpack-cli": "3.3.12",
"webpack-merge": "4.2.2",
"yamljs": "0.3.0"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "#npm run webpack:prod && git add _source/assets/js"
}
},
"browserslist": [
">5%",
"last 2 versions",
"not dead",
"Firefox ESR",
"not IE 11",
"not IE_Mob 11",
"maintained node versions"
],
"//comment-postcss": "cssnano is configured based on NODE_ENV in webpack",
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"renovate": {
"assignAutomerge": true,
"extends": [
"config:base"
],
"packageRules": [
{
"packageNames": [
"basiljs"
],
"enabled": false
},
{
"updateTypes": [
"minor",
"patch",
"pin",
"digest"
],
"automerge": true
}
]
}
}