-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "react-reveal-text",
"version": "0.1.1",
"description": "A small react library for animating the revealing of text.",
"main": "lib/index.js",
"homepage": "https://github.com/adrianmcli/react-reveal-text",
"repository": {
"type": "git",
"url": "https://github.com/adrianmcli/react-reveal-text.git"
},
"scripts": {
"test": "npm run lint",
"start": "npm run storybook",
"build": "npm run build:lib && npm run build:dist && npm run build-storybook",
"build:lib": "react-build-lib",
"build:dist": "react-build-dist --bundle-name ReactRevealText.js",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint src stories",
"lint:fix": "eslint src stories --fix"
},
"author": "Adrian Li",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"react-build-dist": "^0.0.8",
"react-build-lib": "adrianmcli/react-build-lib",
"@storybook/addon-actions": "^3.3.11",
"@storybook/addon-info": "^3.3.11",
"@storybook/addon-knobs": "^3.3.11",
"@storybook/addon-links": "^3.3.11",
"@storybook/addon-options": "^3.3.11",
"@storybook/addons": "^3.3.11",
"@storybook/react": "^3.3.11",
"@storybook/storybook-deployer": "^2.2.0"
},
"peerDependencies": {},
"keywords": [
"react",
"react-component"
],
"dependencies": {
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}