-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
52 lines (52 loc) · 1.7 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": "snowman",
"version": "3.0.0",
"description": "An advanced story format for authors more experienced with HTML, CSS, and JavaScript. See its <a href='https://videlais.github.io/snowman/#/' target='_blank' rel='noopener noreferrer'>documentation</a>.",
"license": "MIT",
"repository": "https://github.com/videlais/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": "Dan Cox",
"dependencies": {
"ejs": "^3.1.10",
"jquery": "^3.7.1",
"markdown-it": "^14.1.0",
"mingo": "^6.4.15",
"normalize.css": "^8.0.1",
"underscore": "^1.13.7"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/expect-puppeteer": "^5.0.6",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/puppeteer": "^7.0.4",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.9.1",
"eslint-plugin-jest": "^28.8.2",
"eslint-plugin-jsdoc": "^50.2.2",
"extwee": "^2.2.3",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-puppeteer": "^10.1.0",
"mini-css-extract-plugin": "^2.9.1",
"open": "^10.1.0",
"open-cli": "^8.0.0",
"puppeteer": "^23.2.1",
"shelljs": "^0.8.5",
"style-loader": "^4.0.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}