forked from videlais/snowman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.61 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
{
"name": "MeltingSnowman",
"version": "1.0.0",
"description": "A real-time story format built upon Snowman",
"author": "Balthazar Auger <[email protected]>",
"license": "MIT",
"repository": "https://github.com/baltauger/melting-snowman",
"scripts": {
"test": "jest --coverage",
"lint": "eslint src/*.js test/*.js --fix",
"build": "webpack",
"package": "npm run build && node build-format.js",
"visual-test": "npm run package && extwee -s dist/format.js -i visual_testing/index.twee -c -o visual_testing/index.html && open-cli visual_testing/index.html",
"all": "npm run lint && npm run package && npm run test"
},
"keywords": [
"twine",
"storyformat"
],
"author": "Balthazar Auger",
"dependencies": {
"ejs": "^3.1.8",
"jquery": "^3.6.0",
"markdown-it": "^13.0.1",
"mingo": "^6.0.6",
"normalize.css": "^8.0.1",
"underscore": "^1.13.4"
},
"devDependencies": {
"@types/expect-puppeteer": "^5.0.1",
"@types/jest-environment-puppeteer": "^5.0.2",
"@types/puppeteer": "^5.4.6",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jsdoc": "^39.3.3",
"extwee": "^2.0.6",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"jest-puppeteer": "^6.1.1",
"mini-css-extract-plugin": "^2.6.1",
"open": "^8.4.0",
"open-cli": "^7.0.1",
"puppeteer": "^15.5.0",
"shelljs": "^0.8.5",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}