This repository has been archived by the owner on Oct 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
142 lines (142 loc) · 4.12 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "nordnet-ui-kit",
"version": "0.0.0-development",
"description": "Nordnets React powered UI kit",
"main": "dist/cjs",
"module": "dist/esm",
"types": "types",
"sideEffects": false,
"scripts": {
"commit": "git-cz",
"clean": "rimraf dist",
"dev": "run-s start",
"build": "run-s clean babel:*",
"babel:esm": "BABEL_ENV=esm babel -d dist/esm src/",
"babel:cjs": "babel -d dist/cjs src/",
"watch": "npm run babel:esm -- --watch",
"babel": "babel src -d dist --copy-files --ignore .md",
"lint": "eslint --ext=.jsx --ext=.js src",
"test": "jest",
"tdd": "jest --watch",
"coverage": "jest --coverage && codecov",
"prepublish": "in-publish && run-s lint test build || not-in-publish",
"start": "styleguidist server --colors",
"now-build": "npm run build:docs",
"build:docs": "rimraf documentation/build && styleguidist build",
"predocs-publish": "run-s build:docs",
"docs-publish": "gh-pages -d documentation/dist --repo https://$GH_TOKEN@github.com/nordnet/nordnet-ui-kit.git --silent",
"travis-docs-publish": "gh-pages -d documentation/dist --repo https://$GH_TOKEN@github.com/nordnet/nordnet-ui-kit.git --silent",
"semantic-release": "semantic-release",
"eslint-check": "eslint --print-config .eslintrc | eslint-config-prettier-check",
"format": "prettier --write 'src/**/*.{js,jsx}'"
},
"files": [
"dist",
"src",
"types"
],
"keywords": [
"nordnet",
"react",
"ui",
"kit"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"squash-pr",
"@commitlint/config-conventional"
],
"rules": { "scope-case": [0] }
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint",
"git add"
]
},
"author": "Gustaf Zetterlund <gustaf.zetterlund@nordnet.se>",
"repository": "nordnet/nordnet-ui-kit",
"bugs": {
"url": "https://github.com/nordnet/nordnet-ui-kit/issues"
},
"homepage": "https://nordnet.github.io/nordnet-ui-kit",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.3",
"color": "^1.0.3",
"lodash": "^4.17.10",
"ramda": "^0.26.1",
"react-transition-group": "^2.5.3"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15",
"react-dom": ">=15",
"react-jss": ">=7"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/polyfill": "7.2.5",
"@babel/preset-env": "7.3.4",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@commitlint/cli": "7.5.2",
"@commitlint/config-conventional": "7.5.0",
"@commitlint/travis-cli": "7.5.2",
"@nordnet/prettier-config": "2.0.0",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"babel-plugin-lodash": "3.3.4",
"codecov": "3.2.0",
"commitizen": "3.0.7",
"commitlint-config-squash-pr": "1.0.1",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "1.11.2",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.4.1",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"gh-pages": "2.0.1",
"husky": "1.3.1",
"in-publish": "2.0.0",
"jest": "24.5.0",
"lint-staged": "8.1.5",
"lodash.camelcase": "4.3.0",
"mini-html-webpack-plugin": "0.2.3",
"npm-run-all": "4.1.5",
"prettier": "1.16.4",
"prop-types": "15.7.2",
"raf": "3.4.1",
"react": "16.8.4",
"react-dom": "16.8.4",
"react-jss": "8.6.1",
"react-router-dom": "5.0.1",
"react-styleguidist": "9.0.5",
"react-test-renderer": "16.8.4",
"rimraf": "2.6.3",
"semantic-release": "15.13.3",
"sinon": "7.2.7",
"webpack": "4.29.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "run-p lint test"
}
}
}