-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "generate-lockfile",
"version": "0.0.12",
"description": "CLI to generate a lockfile from a workspace lockfile and package.json",
"main": "index.js",
"author": "Chris Pavlicek <chris@vars.is>",
"license": "MIT",
"scripts": {
"watch": "yarn nodemon --watch \"src/**\" --ext \"ts\" --exec \"ts-node src/entry.ts\" -p './package.json' -l './yarn.lock'",
"build": "rm -rf ./bin/src && yarn tsc",
"package": "yarn build && yarn pack",
"test": "yarn ts-mocha 'test/**/*.test.ts'",
"test:lint": "eslint src --ext .ts",
"test:prettier": "prettier \"src/**/*.ts\" --list-different",
"pub": "yarn build && yarn publish"
},
"repository": {
"type": "git",
"url": "https://github.com/varsis/generate-lockfile.git"
},
"bin": {
"generate-lockfile": "./bin/index.js"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^4.1.0",
"commander-plus": "^0.0.6"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.1.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"ts-mocha": "^8.0.0",
"typescript": "^4.1.2"
},
"files": [
"LICENSE",
"bin/**/*"
]
}