-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "next-build-id",
"version": "3.0.0",
"description": "Use a consistent, git-based build id for your Next.js app",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"pretest": "standard",
"test": "tap --cov --timeout=240 test/test-next6.js test/test-next7.js test/test-next8.js test/test-next9.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nexdrew/next-build-id.git"
},
"keywords": [
"next",
"next.js",
"build",
"id",
"BUILD_ID",
"git",
"head",
"describe",
"tags"
],
"author": "nexdrew",
"license": "ISC",
"bugs": {
"url": "https://github.com/nexdrew/next-build-id/issues"
},
"homepage": "https://github.com/nexdrew/next-build-id#readme",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.6",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"standard-version": "^7.0.0",
"sywac": "^1.2.2",
"tap": "^14.6.1"
}
}