forked from klembot/twinejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.09 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "Twine",
"version": "2.2.1",
"author": "Chris Klimas <[email protected]>",
"description": "a GUI for creating nonlinear stories",
"license": "GPL-3.0",
"repository": {
"type": "hg",
"url": "https://bitbucket.org/klembot/twinejs"
},
"main": "index.html",
"dom_storage_quota": 1000000,
"window": {
"show": true,
"width": 1024,
"height": 600,
"icon": "rsrc/img/logo.ico"
},
"scripts": {
"build": "webpack -d --progress",
"build:release": "webpack -p --progress --config webpack.config.release.js && webpack -p --progress --config webpack.config.cdn.js",
"clean": "rimraf build/ dist/",
"lint": "eslint src/ || exit 0",
"lint:noisy": "eslint src/",
"nw": "node scripts/build-nw.js",
"package": "npm run build:release && npm run nw && node scripts/package.js",
"pot": "node scripts/extract-pot.js",
"start": "webpack-dev-server --inline --hot",
"test": "mocha-webpack --webpack-config webpack.config.test.js -r \"jsdom-global/register\" -r mock-local-storage \"src/**/*.spec.js\"",
"watch": "webpack -d --progress --watch"
},
"dependencies": {
"blob-polyfill": "^1.0.20150320",
"browser-saveas": "^1.0.0",
"codemirror": "^5.5.0",
"core-js": "^2.4.0",
"fastclick": "^1.0.6",
"font-awesome": "^4.3.0",
"jed": "^1.1.0",
"jsonp": "^0.2.1",
"jszip": "^2.5.0",
"lodash.escape": "^4.0.1",
"lodash.uniq": "^4.5.0",
"lodash.values": "^4.3.0",
"lodash.without": "^4.4.0",
"mkdirp": "^0.5.1",
"moment": "^2.10.3",
"osenv": "^0.1.3",
"scroll": "^2.0.0",
"segseg": "^0.2.2",
"semver-utils": "^1.1.1",
"tether-drop": "^1.4.2",
"tiny-uuid": "^1.0.0",
"unfetch": "^3.0.0",
"vue": "^1.0.18",
"vue-router": "^0.7.13",
"vuex": "^1.0.0"
},
"devDependencies": {
"acorn": "^4.0.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.0",
"babel-preset-es2015": "^6.18.0",
"base64-font-loader": "0.0.4",
"chai": "^3.5.0",
"cheerio": "^1.0.0-rc.2",
"chmodr": "^1.0.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.7",
"ejs": "^2.5.2",
"ejs-loader": "^0.3.0",
"eslint": "^3.10.2",
"estraverse": "^4.2.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.11.2",
"fs-extra": "^1.0.0",
"glob": "^7.1.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"htmlparser2": "^3.9.2",
"jsdom": "^11.2.0",
"jsdom-global": "^3.0.2",
"json-loader": "^0.5.7",
"karma-webpack": "^2.0.4",
"less": "^2.7.1",
"less-loader": "^4.0.5",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"mocha": "^3.2.0",
"mocha-webpack": "^1.0.1",
"mock-local-storage": "^1.0.4",
"null-loader": "^0.1.1",
"nw-builder": "^3.2.0",
"po2json": "^0.4.5",
"pofile": "^1.0.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.4",
"sinon": "^3.2.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.5",
"webpack-node-externals": "^1.6.0",
"yargs": "^6.6.0"
}
}