-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "bubbly",
"version": "1.1.2",
"description": "Shorthand for event handling",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "babel-node ./node_modules/.bin/_mocha",
"build": "mkdir -p lib && babel src/index.js --out-file lib/index.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/migme/bubbly.git"
},
"keywords": [
"event",
"customevent",
"eventtarget"
],
"author": "Sebastiaan Deckers <seb@ninja.sg>",
"license": "ISC",
"bugs": {
"url": "https://github.com/migme/bubbly/issues"
},
"homepage": "https://github.com/migme/bubbly#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"customevent-shim": "^0.1.0",
"eslint": "^2.8.0",
"eslint-config-migme": "^2.1.0",
"estraverse-fb": "^1.3.1",
"event-target-shim": "^1.1.1",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
}
}