-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.39 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-ui/core",
"version": "1.0.0-beta2",
"description": "Standard model of UI development",
"keywords": [
"react",
"ui",
"react-ui"
],
"homepage": "https://github.com/jqestate/react-ui#readme",
"bugs": {
"url": "https://github.com/jqestate/react-ui/issues"
},
"license": "Apache-2.0",
"author": "Evgeny Rodionov <github@theaqua.im> (https://github.com/theaqua)",
"contributors": [
"Konstantin Grushetsky <toxickg@icloud.com> (https://github.com/toxickg)"
],
"files": [
"lib",
"src"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jqestate/react-ui.git"
},
"scripts": {
"clean": "rimraf lib",
"build": "NODE_ENV=production $(npm bin)/babel src --out-dir lib",
"lint": "eslint --ext .js src",
"check": "npm run lint",
"precommit": "npm run check",
"prepublish": "npm run clean && npm run check && npm run build"
},
"devDependencies": {
"@dtrussia/eslint-config-dtrussia": "2.2.1",
"babel-cli": "6.4.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-stage-0": "6.3.13",
"eslint": "^2.10.2",
"eslint-plugin-react": "^5.1.1",
"husky": "0.10.2",
"rimraf": "2.5.4"
},
"dependencies": {
"lodash": "4.14.0"
},
"peerDependecies": {
"react": "0.14.x || 15.x.x"
}
}