-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.19 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "xpuz",
"version": "1.2.1",
"description": "Parses and creates crossword puzzle files",
"main": "lib/index.js",
"module": "src/index.js",
"browser": "dist/xpuz.js",
"scripts": {
"test": "mocha --compilers js:@babel/register test",
"prepublish": "npm run compile && npm run build",
"build": "NODE_ENV=production webpack -p",
"compile": "rm -rf lib; babel -s true -d lib src",
"watch": "rm -rf lib; babel --watch --source-maps -s true -d lib src",
"docs": "rm -rf docs; jsdoc -R README.md -p --package ./package.json -c ./.jsdoc.config.json -t ./node_modules/ink-docstrap/template -r -d docs",
"docs:watch": "chokidar \"**/*.jsdoc\" \"src/**/*.js\" --verbose -i node_modules -i docs -i dist -c \"npm run docs\"",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turnerhayes/xpuz.git"
},
"keywords": [
"puz",
"ipuz",
"puzzle",
"puzzles",
"crossword"
],
"author": "Turner Hayes <[email protected]>",
"license": "GPL-3.0",
"engines": {
"node": "8.6.0",
"npm": "5.4.2"
},
"bugs": {
"url": "https://github.com/turnerhayes/xpuz/issues"
},
"homepage": "https://github.com/turnerhayes/xpuz#readme",
"files": [
"lib",
"dist",
"immutable.js"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.0.6",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"chai": "^4.1.2",
"chokidar": "^3.3.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.1.0",
"expect.js": "^0.3.1",
"immutable": "^3.8.2",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.3",
"mocha": "^5.2.0",
"temp": "^0.8.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"buffer-reader": "^0.1.0",
"debug": "^3.1.0",
"hash-it": "^2.1.2",
"iconv-lite": "^0.4.24",
"lodash": "^4.17.15"
},
"peerDependencies": {
"immutable": ">=3"
}
}