-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "@thomann/classnames",
"version": "1.3.1",
"description": "utility for conditionally joining classNames",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"watch": "tsc --watch",
"test": "mocha -r ts-node/register/transpile-only --full-trace 'test/**/*.ts'",
"test:watch": "mocha -r ts-node/register/transpile-only --watch --watch-files src/*.ts,test/**/*.ts --full-trace 'test/**/*.ts'",
"coverage": "nyc npm test"
},
"files": [
"dist",
"types"
],
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/thomn/classname.git"
},
"author": {
"name": "Oleg Kamlowski",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/thomn/classnames/issues"
},
"homepage": "https://github.com/thomn/classnames#readme",
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.9",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}