-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "mini-semver",
"version": "0.1.1",
"description": "Fast semantic version parser based on node-semver",
"main": "dist/cjs/index.cjs.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.cjs.d.ts",
"bin": {
"mini-semver": "./bin/mini-semver"
},
"scripts": {
"build": "npm run lint && npm run coverage && npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b config/tsconfig.cjs.json",
"build:esm": "tsc -b config/tsconfig.esm.json",
"clean": "rimraf dist",
"coverage": "nyc mocha --opts mocha.opts",
"dev:cjs": "tsc -b --watch config/tsconfig.cjs.json",
"dev:esm": "tsc -b --watch config/tsconfig.esm.json",
"lint": "tslint 'src/**/*.ts' 'test/**/*.ts'",
"test": "mocha --opts mocha.opts",
"test:dev": "mocha --opts mocha.opts -w"
},
"keywords": [
"semver"
],
"contributers": [
"ajaxlab7@gmail.com"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ajaxlab/mini-semver.git"
},
"bugs": {
"url": "https://github.com/ajaxlab/mini-semver/issues"
},
"homepage": "https://github.com/ajaxlab/mini-semver",
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"rollup": "^1.19.4",
"tap": "^14.6.1",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-lines-between-class-members": "^1.3.6",
"typescript": "^3.5.3"
},
"dependencies": {
"@types/semver": "^6.0.1",
"semver": "^6.3.0"
},
"tap": {
"check-coverage": true
},
"files": [
"bin",
"dist",
"README.md",
"src"
]
}