forked from n1k0/kept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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
{
"name": "kept",
"version": "0.0.1",
"description": "Personal rich notes HTML app inspired by Google Keep",
"main": "index.js",
"scripts": {
"deploy": "gulp deploy",
"dist": "gulp dist",
"lint": "jsxhint -c .jshintrc src/js",
"start": "gulp",
"test": " npm run lint && jest --config jest-config.json",
"test-win": "npm run lint && jest --config jest-config-win.json"
},
"repository": {
"type": "git",
"url": "https://github.com/n1k0/kept"
},
"keywords": [
"react",
"bootstrap",
"todo"
],
"author": "Nicolas Perriault <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/n1k0/kept/issues"
},
"homepage": "https://github.com/n1k0/kept",
"dependencies": {
"gulp": "^3.8.*",
"gulp-gh-pages": "^0.3.*",
"gulp-uglify": "^0.3.*",
"marked": "^0.3.*",
"react": "^0.10.*",
"react-bootstrap": "^0.10.*",
"reactify": "^0.13.*",
"vinyl-source-stream": "^0.1.*",
"watchify": "^1.0.6",
"browserify": "^6.0.2",
"gulp-webserver": "^0.8.3"
},
"devDependencies": {
"jest-cli": "latest",
"jsxhint": "latest",
"react-tools": "latest"
}
}