-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1 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
{
"name": "@kikiki_kiki/class-names",
"version": "1.0.0",
"description": "Return css classnames string",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:w": "jest --watch",
"test:coverage": "npm test -- --coverage",
"build": "./node_modules/.bin/babel src/index.js --out-dir lib/ --source-maps",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KiKiKi-KiKi/class-names.git"
},
"keywords": [
"classnames",
"css"
],
"author": "Mori Hayashi <[email protected]> (https://twitter.com/KiKiKi_KiKi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/KiKiKi-KiKi/class-names/issues"
},
"homepage": "https://github.com/KiKiKi-KiKi/class-names#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"coveralls": "^3.0.5",
"jest": "^24.8.0"
}
}