This repository has been archived by the owner on Oct 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.98 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
{
"name": "hyral",
"version": "0.2.0",
"description": "Hypermedia oriented Resource Api Layer",
"main": "lib",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage",
"lint": "eslint packages/**/src",
"fix": ".eslint --fix packages/**/src",
"build": "lerna exec --parallel 'BABEL_ENV=production babel src --root-mode upward --out-dir lib --source-maps --extensions .js --delete-dir-on-start'",
"postinstall": "lerna bootstrap && npm run build",
"prerelease": "npm run build",
"release": "lerna publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SyneticNL/Hyral.git"
},
"keywords": [
"hypermedia",
"vue",
"vuex",
"client",
"api",
"rest",
"jsonapi",
"serialize",
"deserialize",
"json-api"
],
"author": "Synetic",
"license": "MIT",
"bugs": {
"url": "https://github.com/SyneticNL/Hyral/issues"
},
"homepage": "https://github.com/SyneticNL/Hyral#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/runtime": "^7.5.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-jest": "^24.9.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-minify": "^0.5.1",
"cross-env": "^5.2.0",
"eslint": "^6.2",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"husky": "^3.0.4",
"jest": "^26.6.3",
"lerna": "^3.16.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}