-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.29 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
{
"name": "react-stagger",
"version": "0.0.0-semantically-released",
"description": "React component for staggered rendering.",
"main": "dist/react-stagger.cjs.js",
"jsnext:main": "dist/react-stagger.esm.js",
"module": "dist/react-stagger.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"
},
"files": ["dist"],
"keywords": [],
"author": {
"name": "Aranja",
"email": "aranja@aranja.com",
"url": "https://aranja.com"
},
"license": "MIT",
"devDependencies": {
"kcd-scripts": "^0.36.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-test-renderer": "^16.3.1"
},
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"eslintIgnore": ["node_modules", "coverage", "dist"],
"repository": {
"type": "git",
"url": "https://github.com/aranja/react-stagger.git"
},
"bugs": {
"url": "https://github.com/aranja/react-stagger/issues"
},
"homepage": "https://github.com/aranja/react-stagger#readme"
}