-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.82 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
{
"name": "mb-react-walkthrough",
"version": "0.1.1",
"description": "MB React Walkthrough is a simple React component to realize walkthrough UI in your application. With this UI, You can add tutorials, onboardings and short storires very easliy.",
"keywords": "react, walkthrough, tutorial, modal, onboarding, ui, design",
"main": "./src/dist/index.js",
"scripts": {
"test": "./node_modules/.bin/run-s test:**",
"test:eslint": "./node_modules/.bin/eslint ./src/script",
"test:stylelint": "./node_modules/.bin/stylelint ./src/css/**/*.scss --config ./config/stylelint.json",
"build": "./node_modules/.bin/run-s build:**",
"build:babel": "./node_modules/.bin/babel --plugins transform-react-jsx ./src/script --out-dir ./src/dist --presets es2015",
"build:css": "./node_modules/.bin/node-sass src/css/mb-react-walkthrough.scss src/dist/css/mb-react-walkthrough.css",
"watch": "./node_modules/.bin/watch 'npm run build' ./src/script/ ./src/css/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mountainboooy/mb-react-walkthrough.git"
},
"author": "Takeru Yoshihara",
"license": "MIT",
"bugs": {
"url": "https://github.com/mountainboooy/mb-react-walkthrough/issues"
},
"homepage": "https://github.com/mountainboooy/mb-react-walkthrough#readme",
"dependencies": {
"bowser": "^1.7.3",
"lodash": "^4.17.4",
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"classnames": "^2.2.5",
"eslint": "^4.6.0",
"eslint-plugin-react": "^7.3.0",
"node-sass": "^4.5.3",
"npm-run-all": "^4.0.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"watch": "^1.0.2"
}
}