-
-
Notifications
You must be signed in to change notification settings - Fork 302
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
3,747 additions
and
2,032 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ cache | |
dist-apps | ||
build | ||
nw-cache | ||
nwbuilder-cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Twine", | ||
"version": "2.1.0", | ||
"version": "2.1.1", | ||
"author": "Chris Klimas <[email protected]>", | ||
"description": "a GUI for creating nonlinear stories", | ||
"license": "GPL-3.0", | ||
|
@@ -18,9 +18,9 @@ | |
}, | ||
"scripts": { | ||
"build": "webpack -d --progress", | ||
"build:release": "webpack -p --progress --config webpack.config.release.js; webpack -p --progress --config webpack.config.cdn.js", | ||
"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/; jscs src/; exit 0", | ||
"lint": "eslint src/ && jscs src/ || exit 0", | ||
"nw": "node scripts/build-nw.js", | ||
"package": "npm run build:release && npm run nw && node scripts/package.js", | ||
"pot": "node scripts/extract-pot.js", | ||
|
@@ -29,16 +29,20 @@ | |
"watch": "webpack -d --progress --watch" | ||
}, | ||
"dependencies": { | ||
"babel-loader": "^6.2.10", | ||
"blob-polyfill": "^1.0.20150320", | ||
"browser-saveas": "^1.0.0", | ||
"codemirror": "^5.5.0", | ||
"core-js": "^2.4.0", | ||
"dom-event-special": "^0.1.7", | ||
"ejs-html-loader": "^2.0.2", | ||
"extract-text-webpack-plugin": "^2.0.0-rc.3", | ||
"fastclick": "^1.0.6", | ||
"font-awesome": "^4.3.0", | ||
"html-webpack-plugin": "^2.28.0", | ||
"jed": "^1.1.0", | ||
"jquery": "^2.1.4", | ||
"jszip": "^2.5.0", | ||
"karma-webpack": "^1.8.1", | ||
"mkdirp": "^0.5.1", | ||
"moment": "^2.10.3", | ||
"osenv": "^0.1.3", | ||
|
@@ -51,7 +55,9 @@ | |
"underscore": "^1.8.3", | ||
"vue": "^1.0.18", | ||
"vue-router": "^0.7.13", | ||
"vuex": "^0.6.3" | ||
"vuex": "^0.6.3", | ||
"webpack": "^2.2.1", | ||
"webpack-dev-server": "^1.16.3" | ||
}, | ||
"devDependencies": { | ||
"acorn": "^4.0.3", | ||
|
@@ -79,12 +85,14 @@ | |
"karma": "^1.3.0", | ||
"karma-cli": "^1.0.1", | ||
"karma-mocha": "^1.3.0", | ||
"karma-mocha-reporter": "^2.2.2", | ||
"karma-phantomjs-launcher": "^1.0.2", | ||
"karma-webpack": "^1.8.0", | ||
"less": "^2.7.1", | ||
"less-loader": "^2.2.3", | ||
"less-plugin-autoprefix": "^1.5.1", | ||
"less-plugin-clean-css": "^1.5.1", | ||
"mocha": "^3.2.0", | ||
"nw-builder": "^3.1.2", | ||
"po2json": "^0.4.5", | ||
"pofile": "^1.0.2", | ||
|
@@ -93,7 +101,7 @@ | |
"sinon": "^2.0.0-pre.4", | ||
"style-loader": "^0.13.1", | ||
"url-loader": "^0.5.7", | ||
"webpack": "^1.13.3", | ||
"webpack": "^2.2.0", | ||
"webpack-dev-server": "^1.16.2", | ||
"yargs": "^6.6.0" | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.