-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.97 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "call-printer",
"version": "1.1.1",
"description": "A tool for easily customize you content to call printer in browser",
"main": "./lib/umd/index.js",
"module": "./lib/es/index.js",
"unpkg": "./lib/umd/index.js",
"types": "./index.d.ts",
"scripts": {
"build:js": "cross-env NODE_ENV=production rollup -c",
"build:dts": "cross-env NODE_ENV=production BUILD_ENV=dts rollup -c",
"dev": "rimraf ./lib && cross-env BUILD_ENV=watch node watch.js",
"build": "rimraf ./lib && npm run build:js",
"build:test": "rimraf ./test-lib && cross-env NODE_ENV=test rollup -c rollup.config.test.js --sourcemap",
"eslint": "eslint ./ --ext .ts,.js --fix",
"test": "npm run build:test && cross-env NODE_ENV=test istanbul cover node_modules/mocha/bin/_mocha -- ./test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/livelybone/call-printer.git"
},
"keywords": [
"call printer",
"printer",
"browser",
"print",
"page",
"content",
"dom element",
"string"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/livelybone/call-printer/issues"
},
"homepage": "https://github.com/livelybone/call-printer#readme",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"@babel/preset-typescript": "^7.3.3",
"@babel/runtime": "^7.5.1",
"@livelybone/singleton": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^1.12.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-plugin-istanbul": "^5.1.4",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"chokidar": "^3.0.2",
"commitizen": "^3.0.7",
"conventional-changelog-cli": "^2.0.12",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"husky": "^3.0.0",
"istanbul": "^1.1.0-alpha.1",
"lint-staged": "^9.1.0",
"mocha": "^5.2.0",
"prettier": "^1.18.2",
"rollup": "^1.7.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-dts": "^1.1.5",
"rollup-plugin-license": "^0.8.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-uglify": "^6.0.2",
"typescript": "^3.5.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts}": [
"eslint --fix",
"git update-index --again"
],
"**/*.scss": [
"prettier --write",
"git update-index --again"
]
}
}