-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "@compactjs/cap",
"version": "1.1.0",
"description": "Caps a value when out of a defined range",
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "microbundle --no-sourcemap",
"dev": "microbundle watch --no-sourcemap",
"prepack": "npm run build",
"test": "npm run build && node test/index.test.js"
},
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/CompactJS/cap.git"
},
"keywords": [
"javascript",
"cap",
"value",
"range",
"limit"
],
"author": "Timo Bechtel",
"license": "MIT",
"bugs": {
"url": "https://github.com/CompactJS/cap/issues"
},
"homepage": "https://github.com/CompactJS/cap#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"cz-conventional-changelog": "^3.3.0",
"microbundle": "^0.13.3",
"semantic-release": "^17.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}