-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "@stefanoruth/classnames",
"version": "1.1.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": "Stefano Ruth <stefano6262@gmail.com>",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stefanoruth/classnames.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"clean": "rm -rf dist/",
"build": "rollup -c rollup.config.ts",
"dev": "rollup -c rollup.config.ts -w",
"prepare-release": "yarn clean && yarn build && yarn test --coverage"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.37.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist"
],
"prettier": {
"semi": false,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always",
"jsxBracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"printWidth": 120
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"dependencies": {}
}