-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.2 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
{
"name": "iframe-message-proxy",
"version": "0.0.0",
"description": "iframe-message-proxy",
"license": "MIT",
"repository": "",
"author": {
"name": "Samuel Martins",
"email": "[email protected]"
},
"keywords": [
""
],
"files": [
"lib",
"types"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch",
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.6",
"@types/node": "^8.0.0",
"commitizen": "^2.10.1",
"coveralls": "^2.0.0",
"cz-conventional-changelog": "^2.1.0",
"cz-customizable": "^5.3.0",
"cz-customizable-ghooks": "^1.5.0",
"ghooks": "^2.0.4",
"jest": "^24.1.0",
"jsdom": "^13.2.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"semantic-release": "^15.9.15",
"ts-jest": "^24.0.0",
"ts-node": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^3.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
},
"ghooks": {
"commit-msg": "cz-customizable-ghooks $2"
}
},
"release": {
"analyzeCommits": {
"releaseRules": [
{
"type": "build",
"release": "patch"
}
]
}
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"verbose": true,
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "jsdom"
}
}