-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "feedback-lite",
"version": "1.3.0",
"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 --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": "^1"
},
"dependencies": {
"lodash.defaultsdeep": "^4.6.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.18.0",
"clean-css-cli": "^4.2.1",
"css-loader": "^0.26.4",
"extract-text-webpack-plugin": "^1.0.1",
"html2canvas": "1.0.0-rc.7",
"node-sass": "^4.14.1",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.2",
"webpack": "^1.15.0",
"webpack-dev-server": "^1.16.5"
},
"babel": {
"presets": [
"es2015"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.com"
}
}