This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
108 lines (108 loc) · 3.31 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
{
"name": "@klarna/ui",
"version": "9.4.7",
"description": "Klarna's UI Components",
"repository": {
"type": "git",
"url": "https://github.com/klarna/ui"
},
"license": "SEE LICENSE IN LICENSE",
"main": "index-built.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --config webpack.config.dev.js",
"build": "NODE_ENV=production webpack --config webpack.config.build.js",
"test": "standard && sass-lint -c .sass-lint.yml '**/*.scss' -v -q && karma start karma.conf.js",
"test:unit": "karma start karma.conf.js",
"lint": "standard && sass-lint -c .sass-lint.yml '**/*.scss' -v -q",
"test:watch": "npm test -- --watch",
"prepublish": "npm run build"
},
"author": "Klarna front end people",
"dependencies": {
"@klarna/higher-order-components": "^5.0.0",
"classnames": "2.2.5",
"deepmerge": "^1.3.2",
"parse-color": "1.0.0",
"react-component-queries": "^2.1.1",
"react-context-props": "^2.2.0",
"react-sizeme": "^2.2.0"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-core": "^6.7.4",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
"babel-preset-react": "^6.1.2",
"babel-preset-stage-3": "^6.24.1",
"create-react-class": "^15.6.2",
"cross-env": "^4.0.0",
"css-loader": "^0.28.0",
"electron": "^1.7.11",
"file-loader": "^0.8.5",
"flyd": "^0.2.2",
"html-webpack-plugin": "^2.28.0",
"html2react": "^1.0.2",
"json-loader": "^0.5.4",
"karma": "^1.6.0",
"karma-chrome-launcher": "0.2.2",
"karma-coverage": "0.5.2",
"karma-electron": "^5.1.1",
"karma-firefox-launcher": "0.1.7",
"karma-ie-launcher": "0.2.0",
"karma-mocha": "0.2.1",
"karma-prettybrowser-reporter": "git+https://github.com/cpapazaf/karma-prettybrowser-reporter.git",
"karma-safari-launcher": "0.1.1",
"karma-sauce-launcher": "^0.3.1",
"karma-spec-reporter": "0.0.23",
"karma-webdriver-launcher": "1.0.4",
"karma-webpack": "^2.0.3",
"mocha": "^2.3.4",
"node-sass": "3.13.0",
"normalize.css": "^4.1.1",
"null-loader": "^0.1.1",
"postcss-loader": "^1.3.3",
"prop-types": "^15.5.9",
"ramda": "^0.21.0",
"react": "15.4.0",
"react-addons-test-utils": "^15.4.0",
"react-dom": "15.4.0",
"react-element-to-jsx-string": "^4.1.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-maskedinput": "^3.3.1",
"react-motion": "^0.4.2",
"react-syntax-highlighter": "^2.2.0",
"recompose": "^0.24.0",
"resolve-url-loader": "^1.2.0",
"sass-lint": "^1.9.1",
"sass-loader": "^3.2.0",
"seed-random": "^2.2.0",
"sinon": "git+https://github.com/sinonjs/sinon.git",
"standard": "8.6.0",
"stringify-object": "^2.4.0",
"style-loader": "^0.16.1",
"url-loader": "^0.5.6",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2",
"webpack-error-notification": "^0.1.6",
"yargs": "^3.31.0",
"zen-router": "^1.0.0"
},
"peerDependencies": {
"html2react": "^1.0.2",
"prop-types": "^15.5.9",
"ramda": "^0.21.0",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^15.5.0",
"react-motion": "^0.4.2",
"recompose": "^0.24.0"
},
"standard": {
"globals": [
"describe",
"it"
],
"parser": "babel-eslint"
}
}