-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.35 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.35 KB
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
{
"name": "@zuze/pubsub",
"version": "3.1.0",
"author": "akmjenkins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zuze-lab/pubsub/tree/next"
},
"description": "A functional minimalist pubsub implementation with utilities",
"keywords": [
"event",
"eventbus",
"pubsub",
"eventemitter",
"publish/subscribe",
"functional",
"pipe",
"operators"
],
"bugs": {
"url": "https://github.com/zuze-lab/pubsub",
"email": "akmjenkins@gmail.com"
},
"main": "index.js",
"module": "index.js",
"browser": "browser.min.js",
"scripts": {
"dist": "yarn lint && yarn test && yarn build && cp -a package.json build && cp -a README.md build && cp -a .npmignore build && yarn pub",
"clean": "rimraf build",
"build": "yarn clean && yarn babel && rollup -c",
"babel": "babel src -d build --copy-files --no-copy-ignored",
"lint": "eslint src/",
"test:ci": "yarn test --coverage --coverageReporters=text-lcov | coveralls",
"test": "jest --testPathPattern=test.ts --config jest.tsconfig.js",
"pub": "cd build && npm publish"
},
"sideEffects": false,
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-node-resolve": "^10.0.0",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"coveralls": "^3.0.9",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^25.1.0",
"prettier": "^1.18.2",
"reselect": "^4.0.0",
"rollup": "^2.15.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"ts-jest": "^25.3.1",
"typescript": "^3.6.4"
}
}