-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-notify-js",
"version": "0.1.2",
"description": "Notification System",
"main": "lib/index.js",
"scripts": {
"lib": "babel src --watch -d lib",
"build:lib": "babel src -d lib",
"build:umd": "webpack -p",
"lint": "eslint src/**/*.js",
"ex": "webpack --watch --config webpack.config.example.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:sass": "node-sass src/scss/react-notify-js.scss -o css/",
"sass": "node-sass src/scss/react-notify-js.scss -w -o css/",
"prefix": "postcss css/react-notify-js.css --map false --use autoprefixer -d css/",
"build:css": "npm run build:sass & npm run prefix",
"build": "npm run build:lib & npm run build:umd & npm run build:css",
"clean:lib": "rimraf lib",
"clean:dist": "rimraf dist",
"clean:css": "rimraf css",
"clean": "npm run clean:lib & npm run clean:dist & npm run clean:css",
"prebuild": "npm run clean && npm run lint",
"start": "concurrently --kill-others \"npm run lib\" \"npm run sass\" \"npm run ex\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rajuahmmed/react-notify-js.git"
},
"keywords": [
"react",
"component",
"react-component",
"ui",
"notify",
"notification"
],
"author": "Raju Ahmmed",
"license": "MIT",
"bugs": {
"url": "https://github.com/rajuahmmed/react-notify-js/issues"
},
"homepage": "https://github.com/rajuahmmed/react-notify-js#readme",
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.0",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"node-sass": "^4.5.3",
"postcss": "^6.0.13",
"postcss-cli": "^4.1.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.2",
"webpack": "^3.8.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^2.9.3"
}
}