-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 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": "scribe-rpg-weather-generator",
"version": "0.1.0",
"description": "Fantasy RPG weather generator",
"repository": {
"type": "git",
"url": "https://github.com/luetkemj/scribe-rpg-weather-generator.git"
},
"author": "luetkemj",
"license": {
"type": "MIT",
"url": "https://github.com/luetkemj/scribe-rpg-weather-generator/raw/master/LICENSE"
},
"main": "build/index.js",
"scripts": {
"build": "npm run lint && npm run test && babel src -d build",
"clean:build": "rimraf build",
"clean:node_modules": "rimraf node_modules",
"clean": "npm run clean:build && npm run clean:node_modules",
"reinstall": "npm run clean && npm install",
"lint:eslint": "eslint .",
"lint": "npm run lint:eslint",
"prepublish": "npm run build",
"test:watch": "jest --watch --coverage",
"test": "npm run lint && jest --coverage"
},
"jest": {
"verbose": false
},
"dependencies": {
"debug-caller": "2.2.0",
"lodash": "4.17.4",
"moment": "2.18.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.1",
"babel-plugin-transform-strict-mode": "6.24.1",
"babel-preset-env": "1.3.3",
"babel-preset-stage-1": "6.24.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-plugin-import": "2.2.0",
"jest": "19.0.2",
"rimraf": "2.6.1"
}
}