-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 910 Bytes
/
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": "class-list-builder",
"version": "1.1.0",
"description": "A simpler class list builder",
"main": "lib/index.js",
"repository": "https://github.com/seanmcp/class-list-builder",
"homepage": "https://github.com/seanmcp/class-list-builder#readme",
"bugs": "https://github.com/seanmcp/class-list-builder/issues",
"files": [
"lib"
],
"scripts": {
"build": "babel src/index.js --out-file lib/index.js",
"prebuild": "jest",
"test": "jest --coverage"
},
"keywords": [
"class",
"classlist",
"class list",
"class list builder",
"class builder",
"classname",
"classnames"
],
"author": "Sean McPherson <[email protected]> (https://github.com/seanmcp)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"jest": "^24.8.0",
"nodemon": "^1.19.1"
}
}