-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "assets-retry",
"version": "1.0.0",
"description": "",
"keywords": [],
"main": "dist/assets-retry.umd.js",
"module": "dist/assets-retry.es5.js",
"typings": "dist/types/assets-retry.d.ts",
"files": [
"dist"
],
"author": "nikaple <nikaple@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/Nikaple/assets-retry.git"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint --fix -f codeframe 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "__RETRY_IMAGE__=true rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src typings",
"start": "__RETRY_IMAGE__=true rollup -c rollup.config.ts -w",
"test": "jest",
"e2e": "serve . & > /dev/null && sleep 3 && jest -c e2e/e2e.config.js; lsof -ti:5000 | xargs kill",
"e2e:bs:test": "node e2e/browserstack.js",
"e2e:bs:local": "BrowserStackLocal --key \"$BROWSERSTACK_ACCESS_KEY\" --folder `pwd`",
"test:debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"travis-deploy-once": "travis-deploy-once"
},
"husky": {
"pre-commit": "lint-staged",
"pre-push": "npm run test:prod && npm run build",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@rollup/plugin-json": "^4.0.0",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"@types/selenium-webdriver": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"chromedriver": "^79.0.0",
"colors": "^1.3.2",
"commitizen": "^4.0.3",
"coveralls": "^3.0.2",
"cross-env": "^6.0.3",
"cz-conventional-changelog": "^3.0.2",
"date-fns": "^2.19.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.0.0-beta.5",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"jest-environment-selenium": "^2.1.2",
"lint-staged": "^9.5.0",
"lodash.camelcase": "^4.3.0",
"merge-deep": "^3.0.2",
"prettier": "^1.14.3",
"promise-retry": "^2.0.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.0",
"rollup": "^1.27.12",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^6.0.4",
"selenium-webdriver": "^4.0.0-alpha.5",
"semantic-release": "^15.13.31",
"serve": "^11.2.0",
"shelljs": "^0.8.3",
"travis-deploy-once": "^5.0.9",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"tslib": "^1.10.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.15.0",
"typescript": "^3.9.6"
}
}