-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "stylebuddy",
"version": "1.1.1",
"description": "Generate encapsulated css inline styles which are extremely configurable",
"main": "dist/stylebuddy.js",
"scripts": {
"test": "tropic ./src/*.test.js",
"lint": "eslint src",
"test-ci": "npm run lint && npm test",
"prebuild": "rimraf ./dist && mkdirp ./dist",
"build": "babel src/stylebuddy.js --out-file dist/stylebuddy.js",
"preversion": "npm run test-ci",
"version": "npm run build && git add dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddneat/stylebuddy.git"
},
"keywords": [
"css",
"parser",
"json",
"inline-styles",
"transform",
"preprocessor",
"simple",
"react",
"inline",
"styles",
"encapsulation",
"vendor-prefix",
"media-queries",
"tag-selector",
"class-selector",
"id-selector",
"server-side",
"component"
],
"author": "ddneat",
"license": "ISC",
"bugs": {
"url": "https://github.com/ddneat/stylebuddy/issues"
},
"homepage": "https://github.com/ddneat/stylebuddy#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.4.5",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.1",
"tropic": "^0.4.0"
}
}