-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "typescript-bouncing-balls",
"version": "0.0.0",
"description": "A Typescript demo of Bouncing Balls",
"main": "src/components/BouncingBallsDemo.tsx",
"scripts": {
"install": "typings install",
"prepublish": "webpack",
"dev-watch": "webpack --watch",
"dev-server": "webpack-dev-server",
"test": "mocha --harmony_default_parameters --require ts-node/register src/**/*.spec.ts",
"test-watch": "mocha --require ts-node/register src/**/*.spec.ts --watch",
"clean": "rm -rf dist/"
},
"author": "Luke Barton <[email protected]> (http://www.lukebarton.co.uk/)",
"license": "ISC",
"dependencies": {
"lodash": "^4.13.1",
"random-material-color": "^1.0.2",
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"devDependencies": {
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"html-webpack-plugin": "^2.22.0",
"karma": "^1.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-sinon": "^1.0.5",
"karma-webpack": "^1.7.0",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"ts-loader": "^0.8.2",
"ts-node": "^0.9.3",
"typescript": "^1.8.10",
"typings": "^1.3.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-livereload-plugin": "^0.8.1"
},
"engines": {
"node": ">= 6.3.0"
}
}