-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "c2d",
"version": "2.2.4",
"description": "A 2D collision detection library for modern HTML5 games by Richard Marks.",
"main": "lib/c2d.js",
"scripts": {
"prepublish": "npm run dist",
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"dist": "webpack --mode=build && npm run sloc && npm run docs",
"prebuild": "npm run clean",
"predev": "npm run clean",
"predist": "npm run clean",
"clean": "rm -rf ./lib && npm run nods",
"test": "karma start",
"docs": "esdoc -c .esdoc.json",
"nods": "find ./ -name '.DS_Store' -depth -delete",
"sloc": "sloc --keys source,comment src/"
},
"keywords": [
"collision",
"es6",
"html5",
"2d"
],
"author": "Richard Marks <ccpsceo@gmail.com> (http://www.ccpssolutions.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RichardMarks/Collision2D.git"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-eslint": "6.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"esdoc": "^0.4.5",
"eslint": "2.4.0",
"karma": "^0.13.22",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chrome-launcher": "^0.2.3",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^2.0.2",
"karma-sinon": "^1.0.4",
"karma-sinon-chai": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"lolex": "^1.4.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"sloc": "^0.1.10",
"webpack": "^1.12.14",
"yargs": "^4.2.0"
}
}