-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2 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
{
"name": "@schibstedspain/sui-tabbed-content",
"version": "0.1.1",
"main": "dist/",
"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-tabbed-content.scss --importer ./scripts/importer.js",
"prepublish": "npm run dist",
"lint": "npm run lint:eslint && npm run lint:sass",
"lint:eslint": "eslint --ext=.js --ext=.jsx ./src/ ./test/ ./docs/",
"lint:sass": "scss-lint src/",
"test": "mocha --compilers js:babel/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"
},
"repository": {
"type": "git",
"url": "git@github.com:SUI-Components/sui-tabbed-content.git"
},
"pre-commit": [
"lint",
"test"
],
"peerDependencies": {
"react": "0.14"
},
"dependencies": {
"@schibstedspain/theme-basic": "5",
"classnames": "2.2.5"
},
"devDependencies": {
"@schibstedspain/frontend-pre-commit-rules": "6.7",
"babel": "5.8.29",
"babel-core": "5.8.30",
"babel-eslint": "4.1.8",
"babel-loader": "5.3.2",
"css-loader": "0.15.3",
"eslint": "1.6.0",
"eslint-plugin-react": "2.5.0",
"expect": "1.6.0",
"font-awesome": "4.4.0",
"gh-pages": "0.3.1",
"mocha": "2.2.5",
"node-libs-browser": "0.5.2",
"node-sass": "3.4.1",
"opener": "1.4.1",
"react": "0.14",
"react-addons-test-utils": "0.14",
"react-dom": "0.14",
"react-hot-loader": "1.2.7",
"sass-loader": "1.0.2",
"style-loader": "0.12.3",
"webpack": "1.9.11",
"webpack-dev-server": "1.9.0"
}
}