-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.03 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
{
"name": "is-classnames",
"author": "Christian Vogt <[email protected]>",
"version": "0.0.4",
"description": "A simple utility for conditionally joining classNames together with the addition of modifier className prefixing.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/christianvogt/is-classnames.git"
},
"license": "MIT",
"keywords": [
"BEM",
"css",
"classes",
"classname",
"classnames",
"react",
"util",
"utility"
],
"files": [
"dist",
"index.js"
],
"scripts": {
"coverage": "jest --coverage",
"test": "jest",
"clean": "rimraf dist",
"build": "npm run clean && rollup -c"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-jest": "^24.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-babel-minify": "^9.1.1"
}
}