-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "mp-event",
"version": "1.2.0",
"description": "A simple event subscription publishing system implementation for miniprogram",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register test/**/*.{ts,tsx}",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run type-check&&npm run fix&&webpack",
"pack": "npm run build&&npm pack"
},
"keywords": [
"miniprogram",
"event"
],
"author": "fisher <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/fishen/mp-event.git"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"bundle-dts": "^1.1.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.2.3",
"reflect-metadata": "^0.1.13",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.2",
"tslint": "^5.20.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"tslib": "^1.11.1"
}
}