-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 4.13 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "charis",
"version": "0.95.0",
"description": "Leftshift One React component library",
"main": "dist/lib/all.js",
"dependencies": {
"@leftshiftone/convey": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.7.4",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "7.4.0",
"@babel/preset-env": "7.0.0-beta.42",
"@babel/preset-react": "7.0.0-beta.42",
"@babel/preset-typescript": "7.3.3",
"@types/jest": "23.3.10",
"@types/node": "10.7.1",
"@types/react": "16.7.21",
"@types/react-dom": "16.0.11",
"@types/styled-jsx": "2.2.8",
"autoprefixer": "9.1.2",
"awesome-typescript-loader": "5.2.1",
"babel-core": "6",
"babel-loader": "8.0.6",
"babel-plugin-import-to-require": "1.0.0",
"babel-preset-es2015": "6.24.1",
"copyfiles": "2.1.0",
"dts-bundle": "0.7.3",
"eslint": "5.4.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-standard": "11.0.0",
"eslint-loader": "2.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.0",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"import-glob-loader": "1.1.0",
"jest": "23.6.0",
"ncp": "2.0.0",
"parcel-bundler": "1.6.2",
"react": "16.5.2",
"react-dom": "16.5.2",
"release-it": "10.3.1",
"scss-bundle": "^3.1.2",
"shx": "0.3.2",
"sonarqube-scanner": "2.1.2",
"style-loader": "0.22.1",
"stylelint": "9.5.0",
"stylelint-config-recommended": "2.1.0",
"stylelint-webpack-plugin": "0.10.5",
"ts-jest": "23.10.5",
"ts-loader": "4.5.0",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.10.0",
"tslint-loader": "3.6.0",
"typescript": "3.0.1",
"url-loader": "1.1.2",
"webpack": "4.16.5",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.5",
"webpack-node-externals": "1.6.0"
},
"scripts": {
"bundle-scss": "scss-bundle -e ./src/main.scss -o ./dist/lib/charis-theme.scss",
"clean": "shx rm -rf dist lib lib-esm",
"build": "npm run build:types && npm run build:js && npm run bundle-scss",
"build2": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist/lib --extensions \".ts,.tsx\" --source-maps inline",
"lint": "stylelint src/**/*.scss && tslint src/**/*.ts && eslint *.js",
"start": "./node_modules/.bin/parcel src/docs/index.html",
"sonarqube": "sonar-scanner -Dsonar.host.url=$SONAR_HOST_URL -Dsonar.login=$SONAR_LOGIN",
"trigger-release:major": "git pull --tags && git tag release-major && git push --tags && git tag -d release-major",
"cleanup-release:major": "git tag -d release-major && git push -d origin release-major",
"trigger-release:minor": "git pull --tags && git tag release-minor && git push --tags && git tag -d release-minor",
"cleanup-release:minor": "git tag -d release-minor && git push -d origin release-minor",
"trigger-release:patch": "git pull --tags && git tag release-patch && git push --tags && git tag -d release-patch",
"cleanup-release:patch": "git tag -d release-patch && git push -d origin release-patch",
"release:major": "release-it major",
"release:minor": "release-it minor --no-requireCleanWorkingDir",
"release:patch": "release-it patch --no-git.requireUpstream"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leftshiftone/gaia-js-charis.git"
},
"keywords": [],
"author": "Leftshift One Software GmbH <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leftshiftone/charis/issues"
},
"homepage": "https://github.com/leftshiftone/charis",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}