-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "mysam-weather",
"version": "0.1.1",
"description": "Let Sam tell you about the weather",
"main": "server/",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "rm -rf dist/ && mkdir dist && npm run babel && npm run less",
"less": "lessc client/styles.less > dist/styles.css",
"babel": "browserify client/weather.js -t babelify --outfile dist/weather.js --standalone MySam.Weather",
"prepublish": "npm run compile",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"author": "David Luecke",
"license": "MIT",
"keywords": [
"weather",
"mysam-plugin"
],
"mysam": {
"client": "dist/weather",
"styles": "dist/styles.css"
},
"devDependencies": {
"babelify": "^6.3.0",
"browserify": "^11.2.0",
"less": "^2.5.3",
"simpleweather": "^3.1.0"
},
"browser": {
"simpleweather": "./node_modules/simpleweather/jquery.simpleWeather.js"
},
"browserify-shim": {
"simpleweather": "jQuery"
},
"dependencies": {
"debug": "^2.2.0"
}
}