-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "storyboard-engine",
"version": "0.1.0",
"description": "An engine for nonlinear and multilinear storytelling",
"main": "dist/bundle.js",
"types": "dist/types/game.d.ts",
"scripts": {
"test": "mocha-webpack tests",
"prepublish": "npm run build",
"build": "webpack"
},
"repository": "git@github.com:lazerwalker/storyboard.git",
"author": "Mike Lazer-Walker <michael@lazerwalker.com>",
"license": "ISC",
"homepage": "https://github.com/lazerwalker/storyboard",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/lodash": "^4.14.78",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.33",
"@types/seedrandom": "^2.4.27",
"@types/sinon": "^2.3.6",
"@types/sinon-chai": "^2.7.29",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"mocha-webpack": "^1.0.1",
"sinon": "^4.1.2",
"sinon-chai": "^2.8.0",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"lodash": "^4.17.4",
"seedrandom": "^2.4.2",
"storyboard-lang": "^0.0.1"
}
}