-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.09 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.09 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
{
"name": "ref-holder",
"version": "1.0.0",
"license": "MIT",
"description": "Friendly util function for holding reference to element for react-like frameworks",
"main": "dist/index.js",
"typings": "src/index.ts",
"scripts": {
"t": "npm run mocha -- src/*.spec.ts",
"test": "npm run eslint && npm run tscheck && npm run t",
"test:r": "npm run mocha -- src/*.spec.ts",
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha",
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
"test:d": "node --inspect-brk -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha --no-timeouts src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"tsclint": "tsc --noEmit --pretty false --strict --forceConsistentCasingInFileNames --noImplicitReturns --noImplicitThis --noUnusedLocals --noUnusedParameters",
"tsclint:w": "npm run tsclint -- --watch",
"eslint": "eslint src --ext ts",
"eslint:fix": "eslint src --ext \"ts\" --fix",
"eslint:w": "chokidar \"src/**/*.ts\" --initial -c \"npm run eslint\"",
"lint:w": "run-p tsclint:w eslint:w",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"commit": "git-cz"
},
"dependencies": {},
"devDependencies": {
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/github": "^4.2.17",
"@semantic-release/npm": "^3.3.1",
"@types/mocha": "^5.2.1",
"@types/node": "^10.3.2",
"chokidar-cli": "^1.2.0",
"conventional-changelog-eslint": "^3.0.0",
"cz-adapter-eslint": "^0.1.2",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-tslint": "^2.1.0",
"eslint-plugin-typescript": "^0.12.0",
"eslint-plugin-unicorn": "^4.0.3",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.5.1",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-clean-code": "^0.2.7",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.1",
"typescript-eslint-parser": "^16.0.0"
},
"engines": {
"node": ">=6",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/unlight/ref-holder.git"
},
"keywords": [],
"release": {
"generateNotes": {
"preset": "eslint"
},
"analyzeCommits": {
"preset": "eslint"
},
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-adapter-eslint"
}
}
}