-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "promobar",
"version": "0.0.8",
"description": "A lightweight and easily configurable promo bar in ES6.",
"author": "barrelny",
"contributors": [
{
"name": "estrattonbailey",
"email": "ericstrattonbailey@gmail.com",
"url": "https://github.com/estrattonbailey"
}
],
"source": "index.js",
"module": "dist/promobar.es.js",
"main": "dist/promobar.js",
"umd:main": "dist/promobar.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "microbundle build",
"watch": "microbundle watch",
"publish": "npm publish --access public",
"test": "ava test/test.js -v"
},
"ava": {
"require": [
"./test/test-helpers.js"
]
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "6.6.0",
"babel-register": "^6.14.0",
"jsdom": "^9.5.0",
"microbundle": "^0.2.4"
},
"dependencies": {
"loop.js": "^0.1.0",
"stockpile.js": "^1.2.0"
},
"repository": {
"type": "git",
"url": "git@github.com:barrel/promobar.git"
},
"license": "MIT"
}