-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "react-baduk",
"version": "1.1.2",
"description": "A react.js component for Go boards",
"main": "lib/Baduk.js",
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"release": "gulp release",
"start": "gulp dev",
"test": "echo 'tests welcome' && exit 0",
"watch": "gulp watch:lib"
},
"readmeFilename": "README.md",
"browserify-shim": {
"react": "global:React"
},
"repository": {
"type": "git",
"url": "https://github.com/chstan/react-baduk.git"
},
"keywords": [
"react",
"react-baduk",
"go",
"baduk",
"component",
"react-component",
"board"
],
"author": "Conrad Stansbury",
"license": "MIT",
"dependencies": {
"lodash": "^4.6.1",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^5.0.0",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"gulp": "^3.9.1",
"react-component-gulp-tasks": "^0.7.7"
}
}