-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "matter-attractors",
"description": "An attractors plugin for matter.js",
"version": "0.1.6",
"main": "build/matter-attractors.js",
"license": "MIT",
"homepage": "https://github.com/liabru/matter-attractors",
"author": "Liam Brummitt <[email protected]> (http://brm.io/)",
"repository": {
"type": "git",
"url": "https://github.com/liabru/matter-attractors.git"
},
"keywords": [
"matter-js",
"plugin",
"physics",
"attractors"
],
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server --content-base docs/",
"test": "mocha test",
"lint": "eslint *.js test/*.js",
"doc": "markdox *.js -o API.md",
"release": "npm version minor -m 'release %s' && npm publish",
"release-patch": "npm version patch -m 'release %s' && npm publish",
"preversion": "npm run lint && npm run test",
"version": "npm run build && npm run doc && git add -A index.js build docs API.md",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.22.0",
"case": "^1.4.2",
"chai": "^3.5.0",
"eslint": "^3.14.1",
"markdox": "^0.1.10",
"matter-js": "^0.12.0",
"matter-tools": "^0.10.0",
"matter-wrap": "^0.1.2",
"mocha": "^3.2.0",
"replace-in-file": "^2.2.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^1.16.3"
},
"dependencies": {}
}