-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "bentobots",
"version": "0.1.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rm -rf lib && babel -d lib/ src/",
"prepublish": "npm run build",
"prebuild": "npm run test"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/lib/"
]
},
"keywords": [],
"author": "John Rees <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bentobots/bentobots/issues"
},
"homepage": "https://github.com/bentobots/bentobots#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bentobots/bentobots.git"
},
"dependencies": {
"asynquence": "^0.10.0",
"colors": "^1.1.2",
"immutable": "^3.8.1",
"topolysis": "^1.1.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^20.0.4"
}
}