-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 921 Bytes
/
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
{
"name": "famous-tool-seed",
"version": "0.1.4",
"description": "Base Famo.us NodeJS Module",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/FamousTools/famous-tool-seed.git"
},
"scripts": {
"test": "npm run-script lint && tape test/*.js | tap-spec",
"watch": "nodemon --ignore node_modules/ -e js,json --exec 'npm test'",
"lint": "eslint **/*.js"
},
"authors": [
"Andrew de Andrade <[email protected]>",
"Myles Borins <[email protected]>"
],
"devDependencies": {
"eslint": "^0.20.0",
"nodemon": "^1.2.1",
"tap-spec": "^3.0.0",
"tape": "^4.0.0"
},
"dependencies": {
"minimist": "^1.1.0"
},
"bin": {
"famous-tool-seed": "bin/cmd.js"
},
"directories": {
"bin": "./bin",
"lib": "./lib",
"test": "./test"
},
"engines": {
"node": ">=0.10.28",
"npm": ">=1.4.10"
},
"license": "TBD"
}