-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.95 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
{
"name": "emphasizer",
"version": "1.6.0",
"description": "React style emphasizer",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^24.0.20",
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5",
"concurrently": "^4.1.1",
"eslint-config-varp-common": "^1.0.2",
"jest": "^24.9.0",
"prepend-file": "^1.3.1",
"rollup": "^4.11.0",
"rollup-obfuscator": "^4.1.1",
"rollup-plugin-scss": "^4.0.0",
"ts-jest": "^24.1.0",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:dev": "cross-env BUILD=dev rollup -c --bundleConfigAsCjs",
"build-watch": "rollup -c -w",
"install-all": "npm i && cd example && npm i",
"start-example": "cd example && npm start",
"deploy-example": "cd example && npm run deploy",
"dev": "concurrently --kill-others \"npm run build-watch\" \"npm run start-example\"",
"test": "jest --config jest.config.js",
"prepublishOnly": "npm run test && npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/berezh/emphasizer.git"
},
"keywords": [
"style",
"react-style",
"inline-style",
"css",
"rate",
"react",
"emphasize",
"emphasizer",
"number"
],
"author": "Vadym Poberezhnyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/berezh/emphasizer/issues"
},
"homepage": "https://github.com/berezh/emphasizer#readme",
"files": [
"dist"
],
"dependencies": {
"jolor": "^1.2.4"
}
}