This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
133 lines (133 loc) · 4.06 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
{
"name": "@deskpro/token-field",
"version": "0.8.5",
"description": "",
"main": "dist/index.js",
"private": false,
"scripts": {
"clean": "rm -rf dist",
"compile": "npm run clean && rollup -c --environment INCLUDE_DEPS,BUILD:production",
"lint": "eslint . --cache --cache-location=.cache/eslint --ext .js,.jsx",
"precommit": "lint-staged",
"prepublishOnly": "npm run compile",
"storybook:dev": "start-storybook -p 9003 -c .storybook",
"build-storybook": "build-storybook -c .storybook -o .site",
"storybook:deploy": "storybook-to-ghpages",
"test": "node scripts/test.js --env=jsdom",
"travis-test": "npm run test -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"peerDependencies": {
"@deskpro/react-components": ">=1.4.2",
"moment": ">=2.22.2",
"react": "^16.0",
"react-dom": "^16.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deskpro/token-field.git"
},
"author": "DeskPRO <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/deskpro/token-field/issues"
},
"homepage": "https://github.com/deskpro/token-field#readme",
"dependencies": {
"@deskpro/js-utils": "1.0.6",
"@fortawesome/free-solid-svg-icons": "5.4.1",
"classnames": "^2.2.5",
"immutable": "^4.0.0-rc.12",
"prop-types": "^15.6.0",
"react-highlight-words": "^0.11.0",
"react-input-autosize": "^2.2.1",
"react-onclickoutside": "^6.7.1",
"react-tether": "1.0.2"
},
"devDependencies": {
"@deskpro/react-components": "1.4.5-beta.5",
"@storybook/addon-actions": "3.4.11",
"@storybook/addon-info": "3.4.11",
"@storybook/addons": "3.4.11",
"@storybook/react": "3.4.11",
"@storybook/storybook-deployer": "^2.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^3.0.0",
"css-loader": "^0.28.7",
"dotenv": "^4.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.11.2",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"moment": "2.29.4",
"node-sass": "^7.0.0",
"postcss-loader": "^2.0.6",
"postcss-modules-values": "^1.3.0",
"postcss-preset-env": "^6.4.0",
"postcss-simple-vars": "^5.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.0",
"rollup": "^0.67.0",
"rollup-plugin-babel": "3.0.7",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^1.6.2",
"sass-loader": "^6.0.6",
"webpack": "^3.6.0"
},
"jest": {
"collectCoverageFrom": [
"src/Components/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"<rootDir>/tests/jest/**/?(*).js?(x)"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"lint-staged": {
"*.{js,jsx}": [
"eslint"
]
}
}