-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "@survivejs/components",
"version": "0.2.0",
"description": "Components for SurviveJS sites",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && babel ./src --out-dir ./dist",
"lint": "eslint . --ext js --ext jsx --ignore-path .gitignore",
"test": "npm run lint",
"preversion": "npm run test",
"prepublish": "npm run build"
},
"peerDependencies": {
"lodash": ">= 4.0 < 5.0",
"moment": ">= 2.0 < 3.0",
"react": ">= 15.0 < 17.0"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-prettier": "^2.3.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prettier": "^1.7.2",
"react": "^16.0.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"react-github-corner": "^1.0.0",
"react-router-dom": "^4.2.2",
"title-case": "^2.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/survivejs-sites/components.git"
},
"bugs": {
"url": "https://github.com/survivejs-sites/components/issues"
},
"homepage": "https://github.com/survivejs-sites/components#readme"
}