-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@shat/stylenames",
"version": "1.3.3",
"description": "A simple JavaScript utility for conditionally joining inline styles together",
"source": "src/index.js",
"jsnext:main": "lib/index.module.js",
"main": "lib/index.js",
"module": "lib/index.module.js",
"unpkg": "lib/index.umd.js",
"scripts": {
"pretest": "microbundle",
"test": "jest",
"watch": "microbundle watch",
"lint": "xo src tests",
"format": "xo src tests --fix",
"build": "npm run clean && microbundle",
"clean": "rimraf lib",
"prerelease": "npm run build",
"release": "np"
},
"keywords": [
"stylenames",
"inline-styles",
"styles",
"css",
"classname",
"classnames",
"util",
"alpinejs",
"alpinejs-styles"
],
"devDependencies": {
"jest": "^26.0.1",
"microbundle": "^0.14.0",
"np": "^7.0.0",
"rimraf": "^3.0.2",
"xo": "^0.38.2"
},
"xo": {
"prettier": true,
"space": true,
"globals": [
"window",
"expect",
"test"
]
},
"author": "Kevin Mathmann",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shatstack/stylenames.git"
},
"bugs": {
"url": "https://github.com/shatstack/stylenames/issues"
},
"homepage": "https://github.com/shatstack/stylenames#readme"
}