-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "build-revision",
"version": "4.1.2",
"description": "Generate semver compatible version to uniquely identify project build using build metadata",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Abhishek Dev",
"url": "https://github.com/abhishekdev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhishekdev/build-revision.git"
},
"bugs": {
"url": "https://github.com/abhishekdev/build-revision/issues"
},
"homepage": "https://github.com/abhishekdev/build-revision#readme",
"scripts": {
"build": "babel src -d dist --source-maps",
"prepare": "npm run build && husky install",
"pre-commit": "pretty-quick --staged && npm run lint",
"pre-push": "npm run build && npm test",
"prepublishOnly": "npm run build && npm run test",
"lint": "prettier --check \"src/**/*.js\" \"test/**/*.js\" index.js",
"pretest": "npm run lint",
"test": "nyc --reporter=html --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"babel": true
},
"keywords": [
"build",
"version",
"revision",
"hash",
"SHA"
],
"dependencies": {
"dayjs": "^1.10.6",
"read-pkg-up": "^7.0.1",
"semver": "^7.3.5",
"username": "^5.1.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"ava": "^3.15.0",
"coveralls": "^3.1.1",
"husky": "^7.0.1",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1"
}
}