-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
139 lines (139 loc) · 3.81 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
{
"name": "@ima/plugin-atoms",
"version": "7.0.2",
"description": "IMA.js UI React atoms",
"main": "index.server.cjs.js",
"browser": "index.client.cjs.js",
"module": "index.server.esm.js",
"scripts": {
"preversion": "npm test && npm run lint && npm run build && npm run copy",
"postversion": "npm run build && npm run changelog && git push && git push --tags && npm publish --tag ima17",
"lint": "node_modules/.bin/eslint -c ./.eslintrc.js --fix './src/**/*.{js,jsx}' './example/**/*.{js,jsx}' './*.js' --ignore-path ./.prettierignore",
"test": "node_modules/.bin/jest --no-watchman",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "node_modules/.bin/git-cz",
"copy": "node_modules/.bin/gulp copy",
"build": "node_modules/.bin/rollup --config",
"dev": "node_modules/.bin/gulp dev"
},
"keywords": [
"React",
"UI",
"IMA",
"atoms"
],
"author": "Miroslav Jancarik <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/seznam/IMA.js-ui-atoms.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"bugs": {
"url": "https://github.com/seznam/IMA.js-ui-atoms/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
"@babel/preset-react": "^7.10.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ima/core": "^17.6.0",
"@ima/helpers": "^17.4.0",
"@ima/plugin-useragent": "^2.0.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babelify": "10.0.0",
"browserify": "16.5.1",
"classnames": "2.2.6",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"cz-conventional-changelog": "^3.2.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.1.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gulp": "4.0.2",
"gulp-less": "4.0.1",
"husky": "^7.0.0",
"ima-clientify": "^0.1.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.7.0",
"react-dom": "^16.13.1",
"rollup": "^2.12.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-jscc": "^1.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-replace": "^2.2.0",
"shallow-with-context": "0.2.4",
"to-mock": "^1.6.2",
"watchify": "3.11.1"
},
"browserify": {
"transform": [
"ima-clientify",
"loose-envify",
"babelify"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "node_modules/.bin/commitlint -e $GIT_PARAMS"
}
},
"peerDependencies": {
"react": "16.x",
"@ima/core": "17.x",
"@ima/plugin-useragent": "3.x"
},
"engines": {
"npm": ">=4 <9"
},
"dependencies": {
"infinite-circle": "^0.3.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"bail": true,
"verbose": false,
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"functions": 45,
"lines": 45,
"statements": 45
}
},
"setupFiles": [
"@ima/core/test.js",
"<rootDir>/setupJest.js"
],
"modulePaths": [
"<rootDir>/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.jsx?": "./preprocess.js"
},
"testRegex": "(/src/(.*/)?__tests__/).*Spec\\.jsx?$"
}
}