-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
48
49
{
"name": "@opendnd/core",
"version": "0.2.7",
"description": "This is the opendnd core module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "yarn run env:dev && nodemon --exec ts-node src/index.ts",
"prebuild": "rimraf dist",
"build": "tsc --declaration && npm run copyjson",
"prepublish": "npm run build",
"lint": "tslint src/**/*.ts",
"env:dev": "cross-env NODE_ENV=development",
"env:prod": "cross-env NODE_ENV=production",
"test": "mocha -c -S -R spec --compilers ts:ts-node/register --check-leaks",
"test:watch": "yarn test -- -w",
"copyjson": "node scripts/copy-json.js",
"jsonschema": "node scripts/generate-schemas.js",
"list": "node scripts/list-resources.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opendnd/core.git"
},
"author": "Drew Morris <[email protected]> (http://github.com/drewry)",
"license": "MIT",
"bugs": {
"url": "https://github.com/opendnd/core/issues"
},
"homepage": "https://github.com/opendnd/core#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.5",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.4",
"yarn": "^1.10.1"
},
"dependencies": {
"roll": "^1.2.0",
"typescript-json-schema": "git+https://github.com/YousefED/typescript-json-schema.git"
}
}