-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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": "random-charts",
"version": "0.0.17",
"description": "Library for creating random tables and random charts for role playing games (rpgs).",
"main": "index.js",
"files": ["dist"],
"keywords": [
"random",
"encounter tables",
"random charts",
"random tables",
"d&d",
"rpg"
],
"repository": "github:shaefer/random-charts",
"author": "Daniel Shaefer",
"license": "MIT",
"devDependencies": {
"babel-cli": "latest",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"jshint": "^2.9.4",
"mocha": "^3.1.2",
"rimraf": "^2.6.1"
},
"dependencies": {
"owlbear": "^0.1.0",
"seedrandom": "^2.4.2"
},
"scripts": {
"clean": "rimraf dist",
"lint": "jshint src || true",
"babel": "babel src -d dist && babel data -d dist/data",
"test-only": "mocha ./spec --compilers js:babel-register --recursive",
"test": "npm run clean && npm run babel && npm run lint && npm run test-only",
"quick-test": "npm run babel && npm run test-only",
"build": "npm test",
"prepublish": "npm run build"
}
}