-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 898 Bytes
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": "@madappgang/css-class-builder",
"version": "1.0.7",
"description": "A simple utility to compose a single css class name out of multiple separate variables",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && babel src -d dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MadAppGang/css-class-combiner.git"
},
"keywords": [
"string",
"builder",
"composer",
"combiner",
"css",
"class"
],
"author": "MadAppGang",
"license": "MIT",
"bugs": {
"url": "https://github.com/MadAppGang/css-class-combiner/issues"
},
"homepage": "https://github.com/MadAppGang/css-class-combiner#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.3.0"
}
}