-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
65 lines (65 loc) · 1.76 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": "mt-events",
"version": "1.2.6",
"description": "Make mobile events user-friendly.",
"main": "lib/index-npm.js",
"scripts": {
"test": "jest --coverage --forceExit --detectOpenHandles",
"codecov": "codecov",
"test:update": "npm run build && jest --coverage",
"build": "node build/build.js",
"docs": "jsdoc ./core/ -d ./docs/developer",
"lint": "eslint core/**/*.js build/*.js --fix",
"precommit": "lint-staged",
"prepush": "npm run test:update"
},
"lint-staged": {
"core/*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jerryOnlyZRJ/mobile-events.git"
},
"keywords": [
"mobile",
"events"
],
"author": "ranjayzheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/jerryOnlyZRJ/mobile-events/issues"
},
"homepage": "https://github.com/jerryOnlyZRJ/mobile-events#readme",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"args-parser": "^1.1.0",
"babel-core": "^7.0.0-bridge.0",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"jsdoc": "^3.5.5",
"lint-staged": "^7.2.2",
"prettier": "^1.14.0",
"rollup": "^0.63.5",
"gzip-size": "^5.0.0",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-eslint": "^5.0.0",
"uglify-js": "^3.4.9",
"yargs-parser": "^10.1.0"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
}
}