-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "flowfield",
"version": "0.0.33",
"description": "This library provides a pathfinding mechanism based on vectors field.",
"keywords": [
"pathfinding",
"flowfield",
"2d-game"
],
"author": "Gaël Servaud <[email protected]",
"bugs": "https://github.com/GaelS/flowfield/issues",
"repository": {
"type": "git",
"url": "https://github.com/GaelS/flowfield"
},
"main": "./dist/bundle.js",
"scripts": {
"build": "webpack",
"test": "BABEL_ENV=test ./node_modules/jest/bin/jest.js",
"test:watch": "BABEL_ENV=test ./node_modules/jest/bin/jest.js --watchAll"
},
"babel": {
"env": {
"test": {
"presets": [
"babel-preset-flow",
"babel-preset-env"
]
}
}
},
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.57.2",
"flow-remove-types": "^1.2.1",
"flow-typed": "^2.2.0",
"jest": "^21.2.1",
"uglifyjs-webpack-plugin": "^1.0.1",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.9.1"
},
"dependencies": {
"immutable": "^3.8.2",
"lodash.compact": "^3.0.1",
"lodash.filter": "^4.6.0",
"lodash.map": "^4.6.0",
"lodash.minby": "^4.6.0",
"lodash.reduce": "^4.6.0"
}
}