-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.88 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
{
"name": "faster-react-tabs",
"version": "1.1.0",
"description": "A faster React tab component that doesn't use DOM refs. Written in ES6, transpiles down to ES5",
"main": "lib/components/tabs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/edenspiekermann/faster-react-tabs.git"
},
"scripts": {
"build": "babel src/ -d lib/ && rm -Rf dist/ && mkdir dist/ && node node_modules/webpack/bin/webpack --optimize-minimize --progress --colors && cp src/example/index.html dist/ && mkdir -p dist/css/ && node node_modules/node-sass/bin/node-sass --output-style compressed src/example/scss/index.scss dist/css/index.css && mkdir -p dist/images/ && cp src/example/images/* dist/images/",
"watch": "node node_modules/webpack-dev-server/bin/webpack-dev-server --content-base dist/",
"lint": "semistandard src/",
"deploy": "git subtree push --prefix dist/ origin gh-pages",
"predeploy": "npm run build",
"prepublish": "npm run build"
},
"files": [
"lib/"
],
"author": "edenspiekermann",
"license": "MIT",
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.4.5",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.24.1",
"create-react-class": "^15.6.0",
"eslint-plugin-react": "^7.1.0",
"node-sass": "^4.5.3",
"prop-types": "^15.5.10",
"semistandard": "^11.0.0",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"keywords": [
"react",
"react-component",
"react ui",
"es6",
"tabs"
],
"standard": {
"ignore": [
"/dist/*"
]
},
"semistandard": {
"parser": "babel-eslint"
}
}