-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 865 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 865 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
36
37
38
39
40
41
42
{
"name": "@ctm/inlinestyles",
"version": "0.0.3",
"description": "A simple utility for conditionally joining inline styles",
"main": "inlinestyles.js",
"author": "@subpx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/subpx/inlinestyles.git"
},
"keywords": [
"javascript",
"js",
"css",
"inline",
"styles",
"selectors",
"util",
"utility"
],
"engines": {
"node": ">=8"
},
"scripts": {
"build": "./node_modules/.bin/babel index.js --out-file inlinestyles.js",
"test": "xo index.js && mocha tests.js"
},
"files": [
"index.js"
],
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"mocha": "^5.2.0",
"xo": "^0.21.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0"
}
}