-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@chatie/semver",
"version": "0.4.7",
"description": "The Enhanced Semantic Versioner for NPM",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"directories": {
"test": "tests"
},
"dependencies": {
"@types/semver": "^7.2.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.1",
"@chatie/tsconfig": "^0.10.1",
"@types/shelljs": "^0.8.5",
"git-scripts": "^0.4.3",
"read-pkg-up": "^6.0.0",
"shelljs": "^0.8.3",
"shx": "^0.3.2",
"tstest": "^0.4.10"
},
"scripts": {
"build": "tsc",
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && npm run build",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts",
"lint:es": "eslint src/**/*.ts tests/**/*.ts",
"lint:ts": "tsc --noEmit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"bin": {
"semver-is-prod": "dist/bin/semver-is-prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/semver.git"
},
"keywords": [
"semver",
"isprod"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/semver/issues"
},
"homepage": "https://github.com/Chatie/semver#readme",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"git": {
"scripts": {
"pre-push": "./scripts/pre-push.sh"
}
}
}