-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.3 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
75
76
77
{
"name": "event-sky",
"version": "0.0.0-development",
"description": "javascript event pub/sub utility",
"main": "build.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c --watch",
"test": "jest --config=test/jest.config.json",
"test:watch": "jest --config=test/jest.config.json --watch",
"test:coverage": "jest --config=test/jest.config.json --coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/crobinson42/event-sky.git"
},
"keywords": [
"events",
"javascript events",
"js events",
"es6 events",
"event store",
"event utility",
"javascript",
"browser",
"node",
"pub/sub",
"publish subscribe"
],
"author": "cory robinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/crobinson42/event-sky/issues"
},
"homepage": "https://github.com/crobinson42/event-sky",
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"browser-sync": "^2.18.8",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^19.0.1",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"grunt": "^0.4.5",
"grunt-contrib-uglify": "^0.9.1",
"jest": "^19.0.2",
"jest-babel-preprocessor": "^0.3.0",
"jest-cli": "^19.0.2",
"regenerator-runtime": "^0.10.3",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2",
"semantic-release": "^6.3.2",
"sinon": "^2.1.0"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/jest-babel-preprocessor/preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
}
}