This repository was archived by the owner on Sep 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.17 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.17 KB
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
{
"name": "@schibstedspain/sui-card",
"version": "7.2.2",
"main": "dist/",
"keywords": [
"SUI-Components",
"ReactJS",
"card",
"schibstedspain"
],
"scripts": {
"clean:dist": "rm -rf ./dist/*",
"predist": "npm run clean:dist -s",
"dist": "npm run dist:scripts && npm run dist:styles",
"dist:scripts": "babel src --out-dir dist",
"dist:styles": "node-sass src/index.scss dist/_sui-card.scss --importer ./scripts/importer.js",
"prepublish": "npm run dist",
"lint": "npm run lint:js && npm run lint:sass",
"lint:sass": "node_modules/.bin/sass-lint src/**/*.scss -c -v",
"test": "mocha --compilers js:babel-core/register --recursive",
"test:watch": "npm run test -- -w test src --watch-extensions jsx",
"dev": "npm run dev:open && npm run dev:serve",
"dev:serve": "webpack-dev-server --devtool eval --progress --colors --content-base docs/",
"dev:open": "opener http://localhost:8080",
"predoc": "webpack --config webpack.doc.config.js",
"doc": "npm run doc:build",
"doc:build": "gh-pages -d docs",
"lint:js": "node_modules/.bin/eslint --ext .js,.jsx src/"
},
"repository": {
"type": "git",
"url": "git@github.com:SUI-Components/sui-card.git"
},
"pre-commit": [
"lint",
"test"
],
"peerDependecies": {
"react": "0.14 || 15"
},
"dependencies": {
"@schibstedspain/theme-basic": "5",
"classnames": "2.2.5"
},
"devDependencies": {
"@schibstedspain/frontend-pre-commit-rules": "7.0",
"@schibstedspain/sui-multimedia": "0.4",
"babel-cli": "6",
"babel-core": "6",
"babel-loader": "6",
"babel-preset-es2015": "6.1.18",
"babel-preset-react": "6.1.18",
"chai": "3.4.1",
"css-loader": "0.14.5",
"expect": "1.14.0",
"gh-pages": "0.3.1",
"lodash": "3.9.3",
"mocha": "2.3.4",
"node-libs-browser": "0.5.2",
"node-sass": "4",
"opener": "1.4.1",
"raw-loader": "0.5.1",
"react": "0.14",
"react-addons-test-utils": "0.14",
"react-dom": "0.14",
"react-hot-loader": "1.2.7",
"react-router": "2",
"sass-loader": "1.0.2",
"style-loader": "0.12.3",
"webpack": "1.9.11",
"webpack-dev-server": "1.9.0"
}
}