-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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
{
"name": "@yussan/react-slideview",
"version": "0.1.3",
"description": "Slide view generator for ReactJS",
"main": "dist/index.js",
"scripts": {
"test": "yarn test",
"watch:example": "NODE_ENV=development webpack --watch --progress",
"build:example": "rimraf example/dist && NODE_ENV=production webpack --progress",
"build:prod": "rimraf dist && NODE_ENV=production babel src -d dist",
"release:beta": "npm run build:prod && standard-version -p beta && npm publish",
"release": "npm run build:prod && standard-version && npm publish"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yussan/react-slideview-npm.git"
},
"keywords": [
"reactjs",
"slideview",
"slider"
],
"author": "yussan",
"license": "MIT",
"bugs": {
"url": "https://github.com/yussan/react-slideview/issues"
},
"homepage": "https://github.com/yussan/react-slideview#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"styled-components": "^3.4.1",
"webpack": "3.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react-dom": "^16.4.2",
"rimraf": "^3.0.0"
}
}