-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.23 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
{
"name": "nbp-skills-cluster",
"version": "0.0.2",
"description": "This is a Node.js Bot Platform skills cluster with ability to build part of the global decision tree and run tree traverse.",
"main": "dist/index.js",
"scripts": {
"build": "babel ./src --preset babel-preset-es2015 --out-dir ./dist",
"build:watch": "babel ./src --preset babel-preset-es2015 --out-dir ./dist --watch",
"prepublish": "npm run test; npm run build",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilai/nbp-skills-cluster.git"
},
"author": "Maxim Vetrenko <vetrenko.maxim@gmail.com> (https://github.com/maxmert)",
"license": "ISC",
"bugs": {
"url": "https://github.com/evilai/nbp-skills-cluster/issues"
},
"homepage": "https://github.com/evilai/nbp-skills-cluster#readme",
"dependencies": {
"co": "^4.6.0",
"lodash": "^4.16.4",
"reflecti": "1.0.3"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"eslint-config-evilai": "0.0.1",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
}
}