-
Notifications
You must be signed in to change notification settings - Fork 216
/
package.json
72 lines (72 loc) · 1.78 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
{
"name": "elemental",
"version": "0.7.0",
"description": "React UI Framework",
"main": "lib/Elemental.js",
"author": "Jed Watson",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elementalui/elemental.git"
},
"dependencies": {
"blacklist": "^1.1.4",
"classnames": "^2.2.5",
"create-react-class": "^15.6.2"
},
"devDependencies": {
"babel": "^5.8.23",
"eslint": "^2.13.1",
"eslint-config-keystone": "^2.4.0",
"eslint-plugin-react": "^5.2.2",
"glob": "^7.0.5",
"gulp": "^3.9.1",
"isparta": "^4.0.0",
"react": "^16.0.0",
"react-component-gulp-tasks": "^0.7.7",
"react-dom": "^16.0.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-transition-group": "^1.2.1",
"rimraf": "^2.5.4",
"tap-xunit": "^1.4.0",
"tape": "^4.6.0",
"teaspoon": "^6.4.1"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-transition-group": "^1.2.1"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp build",
"build:lib": "gulp build:lib",
"bump": "gulp bump",
"lint": "eslint .",
"prepublish": "npm run build:lib",
"publish:npm": "gulp publish:npm",
"publish:site": "gulp publish:examples",
"publish:tag": "gulp publish:tag",
"publish:bower": "./scripts/bower.sh",
"release": "gulp release",
"site": "gulp dev:server",
"start": "gulp dev",
"watch": "gulp watch:lib",
"test": "babel-node test",
"precov": "rimraf coverage",
"cov": "babel-node node_modules/isparta/bin/isparta cover --report text --report html test"
},
"keywords": [
"react",
"react-component",
"ui",
"framework",
"controls",
"element",
"css",
"less"
]
}