This repository was archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.36 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "formatizer",
"version": "1.5.1",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/O-clock-dev/formatizer.git"
},
"author": "Team O’clock <dev@oclock.io>",
"license": "MIT",
"scripts": {
"start": "brunch watch --server",
"build": "babel src -d dist",
"prepublish": "rm -rf dist && yarn build",
"test": "test(){ if [ -z $1 ]; then mocha tests/.setup.js 'tests/**/*.test.js'; else mocha tests/.setup.js $1 $2; fi; }; test",
"lint": "eslint --fix '{example,src,tests}/**/*.{js,json}'",
"pretty": "prettier --write '{example,src,tests}/**/*.{js,json}'",
"precommit": "lint-staged && yarn test"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"dependencies": {
"emoji-mart": "^2.11.1",
"enzyme-adapter-react-16": "^1.15.2",
"react-syntax-highlighter": "^5.7.0"
},
"peerDependencies": {
"react": "^16.2.0 || ^16.13.1"
},
"devDependencies": {
"auto-reload-brunch": "^2.7.1",
"babel-brunch": "git+https://github.com/webdif/babel-brunch.git",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^3.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"brunch": "^2.10.12",
"chai": "^4.1.2",
"enzyme": "^3.2.0",
"eslint": "^4.4.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-import-resolver-node": "^0.3.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.1.0",
"husky": "^0.14.3",
"jsdom": "^11.5.1",
"lint-staged": "^6.0.0",
"mocha": "^4.0.1",
"prettier": "^1.9.1",
"prop-types": "^15.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1"
},
"main": "dist/index.js",
"files": [
"README.md",
"dist",
"example"
],
"bugs": {
"url": "https://github.com/O-clock-dev/formatizer/issues"
},
"description": "Format easily your message.",
"homepage": "https://github.com/O-clock-dev/formatizer#readme",
"keywords": [
"format",
"message",
"react"
],
"contributors": [
"Alexandre Bourdeaud’hui <alexandre@oclock.io>",
"Maxime Vasse <maxime@oclock.io>"
]
}