-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 934 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
{
"name": "eventing",
"version": "0.1.0",
"description": "A miniature event library",
"homepage": "https://github.com/AndrewMusgrave/eventing",
"repository": "https://github.com/AndrewMusgrave/eventing",
"author": {
"name": "Andrew Musgrave",
"email": "andrewdmusgrave@gmail.com",
"url": "https://github.com/AndrewMusgrave"
},
"main": "lib/eventing.js",
"files": [
"lib"
],
"module": "lib/eventing.m.js",
"license": "MIT",
"devDependencies": {
"eslint": "^5.4.0",
"eslint-plugin-shopify": "^23.1.0",
"in-publish": "^2.0.0",
"microbundle": "^0.6.0",
"prettier": "^1.14.2"
},
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"lint": "eslint ./src/**/*.js --max-warnings 0 --format codeframe",
"format": "yarn run lint --fix",
"check": "npm-run-all lint",
"prepublish": "in-publish && yarn run build || :"
},
"source": "src"
}