-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 2.54 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
{
"name": "box-developer-changelog",
"version": "1.0.0",
"description": "Box Developer Changelog",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/box/box-developer-changelog.git"
},
"author": "Box <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "concurrently 'yarn:build:*'",
"build:actions": "cp -rf .github ./compiled",
"build:entries": "babel-node -e 'require(\"./code/src\").writeChangelog()'",
"clean": "rm -rf compiled && mkdir compiled",
"clean:all": "rm -rf ./.sources ./compiled",
"lint:alex": "alex content/ -q",
"lint": "concurrently 'yarn lint:links' 'yarn lint:markdown' 'yarn lint:spelling' 'yarn lint:alex'",
"lint!": "watch 'yarn lint' content/",
"lint:links": "jest ./code/src/tests/*",
"lint:markdown": "markdownlint -c markdownlintrc.json ./**/*.md --ignore ./node_modules --fix",
"lint:spelling": "yarn lint:spelling:interactive -r",
"lint:spelling:interactive": "mdspell 'content/**/*.md' 'templates/**/*.md' README.md CONTRIBUTING.md -a -n --en-us -d code/dictionaries/en_US",
"pull": "babel-node -e 'require(\"./code/src/scripts/pull.js\").pull()'",
"prebuild": "yarn clean ",
"prelint": "yarn pull",
"test": "jest ./code/tests/* --coverage --collectCoverageFrom=code/**/*.js --coverageReporters=html --coverageReporters=text",
"test!": "yarn test --watchAll",
"import:release": "babel-node -e 'let Importer = require(\"./code/src/Importer/\").default; new Importer().importRelease({ destination: \"./content\" })'",
"new": "babel-node ./code/src/scripts/new-release-from-template.js"
},
"dependencies": {
"@babel/node": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.3",
"@babel/runtime": "^7.10.3",
"alex": "^9.0.1",
"axios": "0.21.2",
"babel-jest": "^26.1.0",
"concurrently": "^5.2.0",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"handlebars": "^4.7.7",
"inquirer": "^7.2.0",
"jest": "^26.0.1",
"js-yaml": "^3.14.0",
"markdown-spellcheck": "^1.3.1",
"markdownlint": "^0.22.0",
"markdownlint-cli": "^0.25.0",
"markdownlint-rule-helpers": "^0.13.0",
"nock": "^13.0.2",
"randomstring": "^1.1.5",
"remark": "^13.0.0",
"remark-github": "^10.0.1",
"remark-reference-links": "^5.0.0",
"sha1-from-file": "^2.0.1",
"strip-indent": "^3.0.0",
"uslug": "^1.0.4",
"watch": "^1.0.2",
"yarn": "^1.22.19"
}
}