-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "@l8js/l8",
"version": "0.12.1",
"description": "Lightweight core library for JavaScript projects",
"main": "dist/l8.runtime.esm.js",
"type": "module",
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/l8js/l8.git"
},
"keywords": [
"l8"
],
"author": "Thorsten Suckow-Homberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/l8js/l8/issues"
},
"homepage": "https://github.com/l8js/l8#readme",
"scripts": {
"build": "npx rollup -c",
"build:docs": "npx jsdoc ./src/ -r -d docs",
"build:dev": "npm i --save-dev && npx node-git-hooks",
"test": "jest",
"postversion": "git push && git push --tags",
"preversion": "npm run test && npm run build",
"release:patch": "npm run preversion && standard-version --release-as patch && npm run postversion",
"release:minor": "npm run preversion && standard-version --release-as minor && npm run postversion",
"release:major": "npm run preversion && standard-version --release-as major && npm run postversion"
},
"dependencies": {
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.4",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"babel-jest": "^27.0.1",
"babel-plugin-rewire": "^1.2.0",
"eslint": "^7.27.0",
"jest": "^27.0.1",
"jest-fetch-mock": "^3.0.3",
"jsdoc": "^3.6.10",
"node-git-hooks": "^1.0.6",
"rollup": "^2.73.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.1"
}
}