-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "abettor",
"version": "1.2.0",
"description": "An async/sync mediator pattern",
"license": "MIT",
"author": "te schultz",
"main": "dist/abettor.js",
"keywords": [
"mediator",
"emit",
"event"
],
"repository": {
"type": "git",
"url": "https://github.com/artisin/abettor"
},
"bugs": {
"url": "https://github.com/artisin/abettor/issues"
},
"scripts": {
"build": "yarn run clean && webpack --color --progress",
"clean": "rm -rf dist/*",
"commit": "git cz",
"dev": "yarn run clean && NODE_ENV=dev webpack -w",
"link": "yarn link && yarn link abettor",
"postinstall": "yarn run link",
"prepublish": "yarn run test && yarn run build",
"release:major": "yarn run test && bumped release major",
"release:minor": "yarn run test && bumped release minor",
"release:patch": "yarn run test && bumped release patch",
"test": "yarn run build && mocha __tests__/run.test.js"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"regenerator-runtime": "^0.12.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-terminal": "^0.7.3",
"commitizen": "^2.9.6",
"cz-customizable-te": "^6.0.0",
"fast-async": "^6.3.0",
"fs-extra": "^4.0.2",
"glob-all": "^3.1.0",
"lodash": "^4.17.4",
"mocha": "^5.2.0",
"should": "^11.2.1",
"webpack": "^3.6.0",
"webpack-node-externals": "^1.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
}
}