-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "gist-txt",
"version": "2.3.5",
"description": "A minimal text adventure engine",
"browser": "dist/main.js",
"scripts": {
"test": "jest",
"doc": "docco src/index.js",
"lint": "eslint 'src/**/*.js' 'test/**/*.js'",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"serve": "http-server dist -c-1",
"flow": "flow"
},
"repository": {
"type": "git",
"url": "git://github.com/potomak/gist-txt.git"
},
"keywords": [
"adventure",
"engine",
"game",
"gist",
"Git",
"github",
"text adventure",
"text",
"interactive",
"fiction",
"interactive fiction",
"tool",
"Twine"
],
"author": "Giovanni Cappellotto",
"license": "MIT",
"bugs": {
"url": "https://github.com/potomak/gist-txt/issues"
},
"homepage": "https://github.com/potomak/gist-txt",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.13.13",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.4",
"docco": "^0.8.0",
"eslint": "^7.1.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-jest": "^21.24.1",
"flow-bin": "^0.149.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"webpack": "^5.35.1",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"buffer": "^6.0.3",
"gray-matter": "^4.0.1",
"js-yaml": "^3.14.1",
"marked": ">=0.7.0",
"mustache": "^3.0.0"
}
}