-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 1.84 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "dynamic-class-list",
"version": "2.0.2",
"description": "A js package to get a string of dynamic and conditional css classes",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"prepublishOnly": "yarn build",
"test": "yarn run test:unit",
"pretest": "yarn run build",
"test:unit": "jest",
"prettier": "npx prettier --write '**/*.{ts,tsx,jsx,js,css,html}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tusharf5/dynamic-class-list"
},
"keywords": [
"class",
"dynamic",
"classList",
"classNames",
"optional",
"conditional",
"style",
"html",
"reactive",
"jsx",
"react",
"print"
],
"author": "Tushar Sharma",
"license": "MIT",
"bugs": {
"url": "https://github.com/tusharf5/dynamic-class-list/issues"
},
"homepage": "https://github.com/tusharf5/dynamic-class-list#readme",
"devDependencies": {
"@babel/preset-env": "^7.15.6",
"@types/jest": "^27.0.1",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "4.28.4",
"@typescript-eslint/parser": "4.28.4",
"concurrently": "6.2.0",
"eslint": "7.31.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"jest": "^27.1.1",
"prepend-file": "2.0.0",
"prettier": "2.3.2",
"rollup": "2.54.0",
"rollup-plugin-delete": "2.0.0",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.30.0",
"ts-node": "10.1.0",
"tslib": "2.3.0",
"typescript": "^4.1.0"
},
"files": [
"dist"
],
"directories": {
"doc": "docs",
"test": "test"
},
"jest": {
"verbose": true,
"collectCoverage": true
},
"dependencies": {}
}