forked from StreakYC/node-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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": "streakapi",
"version": "1.3.1",
"description": "wrapper for the Streak API",
"keywords": [
"streak",
"api",
"wrapper",
"client"
],
"author": {
"name": "Omar Ismail",
"email": "omar@streak.com"
},
"license": "MIT",
"scripts": {
"prepublish": "babel -s inline -d js/ src/ && flow-copy-source -v src js",
"test": "npm run lint && npm run flow_check && babel-node test/prodtest.js",
"flow_check": "flow check",
"lint": "eslint .",
"lint-fix": "eslint . --fix"
},
"main": "js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/StreakYC/node-api-wrapper.git"
},
"bugs": {
"url": "https://github.com/StreakYC/node-api-wrapper/issues"
},
"homepage": "https://github.com/StreakYC/node-api-wrapper#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^3.11.1",
"flow-bin": "^0.36.0",
"flow-copy-source": "^1.0.2"
},
"dependencies": {
"babel-runtime": "^6.6.1"
}
}