forked from citation-js/citation-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "root",
"private": true,
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"babel-plugin-istanbul": "^6.0.0",
"conventional-changelog-cli": "^4.1.0",
"expect.js": "^0.3.1",
"jsdoc": "^4.0.0",
"mocha": "^10.0.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"wikibase-sdk": "^10.0.2"
},
"scripts": {
"babel": "pnpm -r exec babel src -d lib --copy-files",
"babel-mjs": "pnpm -r exec babel src -d lib-mjs --copy-files --env-name mjs",
"test": "node test/run-tests.js",
"test:live": "TEST_MOCK_HTTP=false pnpm test",
"test:update": "node scripts/tests.wikidata.js && node scripts/tests.doi.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"docs": "jsdoc -c .jsdoc.js",
"preversion": "pnpm lint && npm test",
"version": "pnpm changelog",
"postversion": "pnpm babel && pnpm babel-mjs"
},
"standard": {
"parser": "@babel/eslint-parser"
}
}