-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
{
"name": "@researchgate/inline-stylesheet",
"version": "0.4.0",
"description": "Inline stylesheets for your components",
"main": "lib/js/InlineStylesheet.js",
"module": "lib/es/InlineStylesheet.js",
"files": [
"lib"
],
"scripts": {
"build": "npm run clean:build && npm run build:js && npm run build:es",
"build:js": "cross-env BABEL_ENV=production_js babel src/ --out-dir lib/js --ignore **/__tests__",
"build:es": "cross-env BABEL_ENV=production_es babel src/ --out-dir lib/es --ignore **/__tests__",
"clean:build": "rimraf lib/",
"format": "eslint --fix src/",
"lint": "eslint src/",
"precommit": "npm run lint && npm run test",
"prepublish": "npm run test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/researchgate/inline-stylesheet.git"
},
"keywords": [
"inline",
"stylesheet",
"react",
"javascript"
],
"author": "Roland Loesslein <roland.loesslein@researchgate.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/researchgate/inline-stylesheet/issues"
},
"homepage": "https://github.com/researchgate/inline-stylesheet#readme",
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.20.2",
"@researchgate/eslint-config-node-babel": "3.0.0",
"babel-eslint": "10.1.0",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.4.1",
"husky": "7.0.4",
"jest": "27.5.1",
"prettier": "2.8.8",
"rimraf": "3.0.2"
},
"dependencies": {
"lodash": "^4.17.15"
}
}