-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
74 lines (74 loc) · 1.95 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
68
69
70
71
72
73
74
{
"name": "@trainline/react-skeletor",
"version": "1.0.2",
"description": "Make your application look nice when its loading!",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc",
"build:watch": "tsc -w",
"prepublish": "npm run clean && npm run build",
"deploy": "npm publish --access public",
"lint": "tslint 'src/**/*.{ts,tsx}'",
"test": "jest --config test.config.json --no-cache",
"test:watch": "jest --config test.config.json --watch",
"prettify": "prettier --write src/*.ts src/*.tsx src/**/*.ts src/**/*.tsx"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/trainline/react-skeletor.git"
},
"keywords": [
"React",
"Skeleton loading",
"High order component",
"Loading"
],
"authors": [
"Trainline",
"Jamie Copeland",
"Alexandre Rieux"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/trainline/react-skeletor/issues"
},
"homepage": "https://github.com/trainline/react-skeletor#readme",
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0"
},
"devDependencies": {
"@types/enzyme": "^2.7.6",
"@types/jest": "^19.2.2",
"@types/prettier": "^1.7.0",
"@types/prop-types": "^15.5.1",
"@types/react": "^16.0.19",
"@types/react-dom": "^16.0.2",
"@types/react-test-renderer": "^16.0.0",
"@types/recompose": "^0.22.0",
"enzyme": "^3.0.0",
"enzyme-adapter-react-16": "^1.0.0",
"jest": "^21.2.1",
"prettier": "^1.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"recompose": "^0.23.4",
"ts-jest": "^20.0.4",
"tslint": "^5.3.2",
"tslint-eslint-rules": "^4.1.0",
"tslint-microsoft-contrib": "^5.0.0",
"tslint-react": "^3.0.0",
"typescript": "^2.6.1"
}
}