-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.45 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
{
"name": "cannabis-reports",
"version": "1.1.9",
"description": "SDK for Cannabis Reports API",
"author": "AJ Funk <aj@ajfunk.me>",
"main": "lib/index.js",
"engines": {
"node": ">=5.0",
"npm": ">=3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/AJFunk/cannabis-reports"
},
"license": "MIT",
"scripts": {
"test": "export TEST_PATH=lib && mocha --timeout 8000 tests/* --compilers js:babel-register --require ./tests/helper.js --recursive",
"test-source": "export TEST_PATH=src && mocha --timeout 8000 tests/* --compilers js:babel-register --require ./tests/helper.js --recursive",
"start": "babel-node ./src/index.js",
"lint": "eslint --ext .js ./",
"build": "npm run lint && babel src -d lib",
"flow": "flow"
},
"devDependencies": {
"app-module-path": "^1.0.6",
"babel-cli": "^6.7.5",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.7.2",
"chai": "^3.5.0",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.4.0",
"flow-bin": "^0.44.0",
"mocha": "^2.4.5"
},
"dependencies": {
"babel-runtime": "^6.23.0"
}
}