-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
62
63
64
{
"name": "package-changed",
"version": "3.0.0",
"description": "Tells you whether or not dependencies in package.json have been changed.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"bin": {
"package-changed": "bin/package-changed.js"
},
"files": [
"lib",
"esm",
"types"
],
"scripts": {
"build:cjs": "tsc --declarationdir types",
"build:es": "tsc -m esNext --outDir esm --declaration false",
"build": "npm run build:cjs && npm run build:es",
"lint": "eslint --ext .js,.ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf lib esm types",
"preversion": "npm run build && npm run lint",
"version": "npm run format && git add -A",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/thdk/package-changed.git"
},
"author": "Thomas Dekiere <[email protected]>(http://github.com/thdk)",
"license": "ISC",
"keywords": [
"npm",
"install",
"modified",
"changed",
"changes",
"package",
"dependencies",
"devDepencies",
"package",
"hash"
],
"dependencies": {
"commander": "^6.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^26.6.3",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
}
}