-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.5 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
78
79
80
{
"name": "event-sequence-listener",
"version": "0.6.4",
"description": "chain a series of events easily",
"main": "dist/event-sequence-listener.cjs.js",
"module": "dist/event-sequence-listener.es.js",
"types": "types/index.d.ts",
"repository": "git@github.com:dustin71728/event-sequence-listener.git",
"author": "Kiwi Liu <kiwi71728@icloud.com>",
"license": "MIT",
"keywords": [
"event sequence",
"event series",
"promise",
"event listener"
],
"scripts": {
"test:node": "rollup -c rollup.config.js --environment PURPOSE:test,PLATFORM:node && mocha test/**/*.node.js",
"test:browser": "rollup -c rollup.config.js --environment PURPOSE:test,PLATFORM:browser && karma start",
"test": "npm-run-all test:*",
"build": "npm-run-all build:*",
"build:js": "rollup -c rollup.config.js",
"build:declaration": "rm -rf 'types/' && tsc --declaration --emitDeclarationOnly --skipLibCheck --outDir types",
"release": "standard-version",
"docs": "typedoc --out docs ./src/ --exclude '**/+(node_modules|__test__)/**' --mode modules && touch docs/.nojekyll"
},
"browserslist": [
"> 1%",
"not dead",
"not ie 11"
],
"testBundleInNode": {
"output": "test/bundle.node.js",
"format": "cjs"
},
"testBundleInBrowser": {
"output": "test/bundle.browser.js",
"format": "iife",
"name": "EventSequenceListener"
},
"files": [
"dist/",
"types/"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/preset-typescript": "^7.8.3",
"@types/core-js": "^2.5.3",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.7",
"@types/should": "^13.0.0",
"babel-plugin-lodash": "^3.3.4",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.3",
"mocha": "^7.1.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"should": "^13.2.3",
"standard-version": "^7.1.0",
"typedoc": "^0.16.11",
"typescript": "^3.8.3"
},
"dependencies": {
"core-js": "^3.6.4",
"lodash": "^4.17.15"
}
}