-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.59 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": "@adam.biltcliffe/codex",
"version": "0.2.3",
"description": "Game rules engine for Codex by Sirlin Games",
"main": "./dist/main/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/module/index.js",
"files": [
"/dist"
],
"scripts": {
"build-browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./dist/browser --source-maps",
"build-module": "cross-env BABEL_ENV=module babel ./src --out-dir ./dist/module --source-maps",
"build-node": "babel ./src --out-dir ./dist/main --source-maps",
"build": "npm run clean && npm run build-node && npm run build-browser && npm run build-module",
"clean": "shx rm -rf dist",
"lint": "eslint src/. --config .eslintrc.json",
"playground": "board-state-playground --entry ./playground.jsx",
"prepare": "npm run build",
"test": "jest --verbose false",
"test-bail": "jest --bail --verbose false",
"test-watch": "jest --watch"
},
"keywords": [
"boardgames"
],
"author": "Adam Biltcliffe",
"repository": "https://github.com/adambiltcliffe/codex.git",
"license": "ISC",
"dependencies": {
"board-state": "^0.1.3",
"knuth-shuffle": "^1.0.8",
"lodash": "^4.17.15"
},
"devDependencies": {
"@adam.biltcliffe/board-state-playground": "^0.0.3",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-jest": "^24.9.0",
"cross-env": "^5.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"shx": "^0.3.2"
}
}