-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.06 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
{
"name": "react-sm-select",
"version": "1.0.9",
"description": "React Multi/Single Select Component",
"main": "./dist/index.js",
"module": "./es/index.js",
"scripts": {
"start": "run-p scss:w catalog-start",
"es": "babel src -d es -D --ignore '**/*.test.js'",
"build": "npm run scss && webpack --mode production && npm run es",
"prepublish": "rm -rf dist es && npm run build",
"scss": "node-sass src/styles.scss src/styles.css && postcss src/styles.css -u autoprefixer -o src/styles.css",
"scss:w": "nodemon -e scss --watch src --exec 'node-sass src/styles.scss src/styles.css && postcss src/styles.css -u autoprefixer -o src/styles.css'",
"catalog-start": "catalog start catalog",
"catalog-build": "catalog build -o .tmp --public-url /react-sm-select",
"catalog-publish": "bash scripts/publish_catalog.sh",
"test": "jest",
"test:w": "jest --watch"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"devDependencies": {
"autoprefixer": "^9.3.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bulma": "^0.7.2",
"bulma-switch": "^2.0.0",
"catalog": "^3.6.0",
"copy-webpack-plugin": "^4.6.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
"enzyme-to-json": "^3.3.4",
"gh-pages": "^2.0.1",
"git-url-parse": "^11.1.1",
"jest": "^23.6.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"postcss": "^7.0.6",
"postcss-cli": "^6.0.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"webpack": "^4.26.1",
"webpack-cli": "^3.1.2"
},
"keywords": [
"react-component",
"react-multiselect",
"react-select"
],
"license": "MIT",
"author": "Ivan Uzun",
"homepage": "https://darianstlex.github.io/react-sm-select",
"repository": "https://github.com/darianstlex/react-sm-select.git"
}