forked from deprecate/metal-toast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 893 Bytes
/
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
{
"name": "metal-toast",
"version": "2.0.0",
"description": "Metal.js Toast component",
"license": "BSD",
"repository": "wedeploy/metal-toast",
"engines": {
"node": ">=0.12.0",
"npm": ">=3.0.0"
},
"main": "lib/Toast.js",
"jsnext:main": "src/Toast.js",
"files": [
"lib",
"src",
"test",
"build"
],
"scripts": {
"build": "gulp build",
"compile": "babel --presets es2015 -d lib/ src/",
"prepublish": "npm run compile",
"test": "gulp test",
"watch": "gulp build:watch"
},
"keywords": [
"metal"
],
"dependencies": {
"metal-alert": "^2.0.1",
"metal-dom": "^2.4.7",
"metal-soy": "^2.4.7",
"run-sequence": "^1.2.2",
"westyle": "wedeploy/westyle#master"
},
"devDependencies": {
"gulp-metal": "^1.9.8",
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"gulp": "^3.8.11"
}
}