forked from arlando/react-gradient-text
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.78 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
60
61
62
63
64
65
66
67
{
"name": "react-gradient-text",
"version": "0.2",
"description": "Give your text an animated gradient effect using React.",
"main": "build/index.js",
"scripts": {
"test": "mocha test/.setup.js test/**/*-test.js -w",
"test:single": "mocha test/.setup.js test/**/*-test.js --exit",
"prebuild": "rm -rf build && mkdir build",
"build": "webpack",
"start": "webpack-dev-server",
"commit": "git-cz",
"semantic-release": "semantic-release -d"
},
"directories": {
"src": "/src"
},
"repository": {
"type": "git",
"url": "https://github.com/arlando/react-gradient-text.git"
},
"keywords": [
"react",
"component",
"react-component",
"typography",
"gradients"
],
"bugs": {
"url": "https://github.com/arlando/react-gradient-text/issues"
},
"homepage": "http://arlando.github.io/react-gradient-text#readme",
"author": "Arlando Battle (https://github.com/arlando)",
"license": "MIT",
"dependencies": {
"react": "^16.8.1",
"prop-types": "^15.7.1"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/preset-env": "7.2.3",
"@babel/preset-react": "7.0.0",
"@babel/register": "7.0.0",
"@semantic-release/github": "5.2.8",
"@semantic-release/npm": "5.1.3",
"babel-loader": "8.0.4",
"chai": "4.2.0",
"cz-conventional-changelog": "1.1.5",
"enzyme": "3.8.0",
"enzyme-adapter-react-16": "1.7.1",
"jsdom": "13.1.0",
"mocha": "5.2.0",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"semantic-release": "15.13.2",
"webpack": "4.28.2",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.14"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single"
}
}
}