-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 975 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": "fly-ember",
"version": "1.0.0",
"description": "Ember plugin for Fly.",
"license": "MIT",
"repository": "https://github.com/bucaran/fly-ember",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"keywords": [
"fly",
"fly-plugin",
"ember"
],
"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": "[email protected]",
"url": "http://github.com/bucaran"
},
"dependencies": {},
"devDependencies": {
"eslint": "^0.21.2",
"tap-spec": "^4.0.2",
"tape": "^4.0.0"
},
"engines": {
"iojs": ">= 1.0.0",
"node": ">= 0.11.0"
}
}