-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.37 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": "renditioner",
"version": "1.2.0",
"description": "",
"main": "lib/index.js",
"module": "lib/index.module.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && rollup -c",
"stylelint": "stylelint \"src/**/*.scss\"",
"stylelint:fix": "stylelint \"src/**/*.scss\" --fix",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "eslint 'src/**/*.ts' --fix",
"release": "rimraf lib && rollup -c && np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/friewerts/renditioner.git"
},
"author": "Frederik Riewerts",
"license": "ISC",
"bugs": {
"url": "https://github.com/friewerts/renditioner/issues"
},
"homepage": "https://github.com/friewerts/renditioner#readme",
"dependencies": {
"@types/glob": "^7.1.3",
"@types/sharp": "^0.28.3",
"glob": "^7.1.7",
"sharp": "^0.28.3"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"np": "^7.5.0",
"prettier": "^2.3.1",
"rimraf": "3.0.2",
"rollup": "^2.52.2",
"rollup-plugin-bundle-imports": "^1.4.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.3.4"
}
}