-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.87 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
{
"name": "kantrux",
"version": "1.0.0-alpha.12",
"description": "Ultralight web UI library for building static components with JSX support",
"keywords": [
"front-end",
"ui",
"jsx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/romelperez/kantrux.git"
},
"homepage": "https://github.com/romelperez/kantrux",
"author": "Romel Perez (romelperez.dev)",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib",
"dist"
],
"scripts": {
"compile": "npm run compile-common && npm run compile-umd",
"compile-common": "rimraf ./lib && babel ./src --out-dir ./lib --ignore \"./src/**/*.test.js\"",
"compile-umd": "rimraf ./dist && cross-env NODE_ENV=production webpack --config=webpack.umd.config.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "jest",
"test-watch": "jest --watch",
"ci": "npm run compile && npm run lint && npm run test",
"e2e-setup": "npm run compile && webpack --config=webpack.e2e-commonjs.config && webpack --config=webpack.e2e-jsx.config.js",
"e2e-server": "live-server . --port=4500 --open=/e2e --wait=200 --ignore=node_modules",
"e2e": "npm run e2e-setup && npm run e2e-server",
"changelog": "auto-changelog --output CHANGELOG.md --commit-limit false",
"release": "npm run ci && npm publish",
"contributors-add": "all-contributors add",
"contributors-generate": "all-contributors generate"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run ci",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@babel/runtime": "^7.11.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"all-contributors-cli": "^6.17.4",
"auto-changelog": "^2.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"commitizen": "^4.2.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-extended": "^0.11.5",
"live-server": "^1.2.1",
"rimraf": "^3.0.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}