-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "feedback-lite",
"version": "1.1.3",
"description": "Feedback Lite",
"main": "./lib/feedback.js",
"scripts": {
"build": "webpack; NODE_ENV=production webpack; node-sass src/feedback.scss -o dist; node-sass src/feedback.scss | cleancss -o dist/feedback.min.css; babel src --presets babel-preset-es2015 --loose all --out-dir lib",
"start": "webpack-dev-server -v --hot --inline --content-base .",
"test": "echo 'nothing yet'"
},
"author": "Matthew Scragg",
"license": "MIT",
"repository": "https://github.com/scragg0x/feedback-lite",
"peerDependencies": {
"html2canvas": "^0.5.0-beta4"
},
"dependencies": {
"lodash.defaultsdeep": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"node-sass": "^4.0.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"babel": {
"presets": [
"es2015"
]
}
}