-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"author": "Scott Bedard",
"bin": {
"twister": "./bin/index.js"
},
"bugs": {
"url": "https://github.com/scottbedard/twister/issues"
},
"dependencies": {
"commander": "^8.3.0",
"json5": "^2.2.2"
},
"devDependencies": {
"@rbnlffl/rollup-plugin-eslint": "^2.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.7.0",
"jest": "^27.4.5",
"rollup": "^2.62.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^1.4.7",
"ts-jest": "^27.1.2",
"typescript": "^4.4.4"
},
"homepage": "https://github.com/scottbedard/twister#readme",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"name": "@bedard/twister",
"repository": {
"type": "git",
"url": "git+https://github.com/scottbedard/twister.git"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"publish:ci": "node ./scripts/publish.js",
"test:clear": "jest --clearCache",
"test:watch": "jest --coverage --watch --verbose=false",
"test": "jest --coverage"
},
"unpkg": "dist/index.bundle.js",
"version": "1.0.0-beta.19"
}