-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 1.59 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
{
"name": "react-simple-expand",
"version": "0.0.0-semantically-released",
"description":
"React Component for creating accessible and performant expandable UI",
"main": "dist/react-simple-expand.cjs.js",
"jsnext:main": "dist/react-simple-expand.esm.js",
"module": "dist/react-simple-expand.esm.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"build": "kcd-scripts build --bundle",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate",
"setup": "npm install && npm run validate -s",
"precommit": "kcd-scripts precommit",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"files": ["dist"],
"keywords": [],
"author": {
"name": "Aranja",
"email": "[email protected]",
"url": "https://aranja.com"
},
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"devDependencies": {
"@storybook/react": "^3.3.15",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"kcd-scripts": "^0.36.1",
"prop-types": " ^15.6.1",
"react": "^16.2.0",
"react-component-component": "^1.2.1",
"react-dom": "^16.2.0"
},
"eslintIgnore": ["node_modules", "coverage", "dist", "docs"],
"repository": {
"type": "git",
"url": "https://github.com/aranja/react-simple-expand.git"
},
"bugs": {
"url": "https://github.com/aranja/react-simple-expand/issues"
},
"homepage": "https://github.com/aranja/react-simple-expand#readme"
}