This repository has been archived by the owner on Jan 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "dispatchor",
"version": "1.3.2",
"description": "Dispatchor",
"main": "node.js",
"module": "browser.js",
"browser": "browser.js",
"scripts": {
"build": "npm run build:node & npm run build:browser",
"build:node": "babel src --out-dir dist --source-maps inline",
"build:browser": "webpack",
"build:test": "webpack --config webpack.config.test.js",
"dev": "npm run build -- --watch",
"mocha": "mocha --require babel-register",
"test": "npm run mocha -- test/node.js",
"test:dev": "npm run test -- --watch",
"test:doc": "npm run mocha -- test -R markdown > test/documentation.md --recursive",
"prepublish": "npm run build && npm run build:test",
"codestyle": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redcatjs/dispatchor"
},
"keywords": [
"dispatch",
"EventEmitter",
"Events",
"addListener",
"emit",
"emitter",
"event",
"once"
],
"author": "Jo Takion",
"license": "MIT",
"homepage": "https://github.com/redcatjs/dispatchor#readme",
"bugs": {
"url": "https://github.com/redcatjs/dispatchor/issues"
},
"devDependencies": {
"babel-cli": "^7.0.0-beta.3",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators": "^7.0.0-beta.3",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^7.0.0-beta.3",
"babel-preset-env": "^2.0.0-beta.2",
"babel-preset-stage-3": "^7.0.0-beta.3",
"babel-register": "^7.0.0-beta.3",
"babel-runtime": "^7.0.0-beta.3",
"chai": "^4.1.2",
"interface-prototype": "^1.1.1",
"mocha": "^4.0.1",
"standard": "^10.0.3",
"webpack": "^3.9.1"
},
"files": [
"dist",
"browser.js",
"browser.js.map"
],
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/",
"/icon/",
"/browser.js",
"/test/browser.dist.js"
]
}
}