-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 995 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 995 Bytes
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
{
"name": "fly-define",
"version": "0.0.0",
"description": "Define Module for Fly",
"license": "MIT",
"repository": "https://github.com/bucaran/fly-define",
"main": "index.js",
"files": [
"index.js"
],
"keywords":[
"fly",
"fly-plugin",
"define"
],
"scripts": {
"lint": "eslint *.js",
"setup": "npm i && npm test",
"spec": "npm run test | tspec",
"test": "npm run lint && npm run tape",
"build": "echo No build task specified.",
"deploy": "npm run test && git push origin master && npm publish",
"tape": "node --harmony --harmony_arrow_functions ./node_modules/tape/bin/tape test/*.js"
},
"author": {
"name": "Jorge Bucaran",
"email": "jbucaran@me.com",
"url": "http://github.com/bucaran"
},
"dependencies": {
},
"devDependencies": {
"fly-util": "^4.0.1",
"eslint": "^0.21.2",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"engines": {
"iojs": ">= 1.0.0",
"node": ">= 0.11.0"
}
}