-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "react-hashtag",
"version": "2.1.2",
"description": "React hashtags parser with custom renderer and click action on each hashtag.",
"main": "dist/react-hashtag.js",
"umd:main": "dist/react-hashtag.umd.js",
"module": "dist/react-hashtag.m.js",
"source": "src/index.js",
"scripts": {
"test": "jest --config jest.config.json --coverage",
"test-watch": "jest --config jest.config.json --watch",
"build": "microbundle --source src/index.js --target browser --output dist --sourcemap false"
},
"keywords": [
"hashtag",
"react",
"parser",
"hashtags"
],
"files": [
"README.md",
"dist",
"package.json"
],
"author": "Cristian Bote <botecristian@yahoo.com>",
"repository": "https://github.com/cristianbote/react-hashtag",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jest": "^23.6.0",
"microbundle": "^0.4.4",
"preact": "^8.4.2",
"react": "^16.7.0",
"react-dom": "^16.7.0"
},
"peerDependencies": {
"react": "^16.7.0",
"react-dom": "^16.7.0",
"preact": "^8.4.2"
},
"dependencies": {}
}