-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.34 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.34 KB
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
{
"name": "ml-programming",
"version": "1.0.1",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AkashGutha/ML-Programming.git"
},
"keywords": [
"Machien learning",
"LUIS",
"Programming",
"Language"
],
"author": "AkashGutha",
"license": "MIT",
"bugs": {
"url": "https://github.com/AkashGutha/ML-Programming/issues"
},
"homepage": "https://github.com/AkashGutha/ML-Programming#readme",
"description": "A simple experiment to write programs using natural language. The NLP is done by Microsoft's LUIS in the cloud. The NLP can also be done offline by training neural networks or better systems",
"scripts": {
"start": "nodemon src/index.js --exec babel-node --presets es2015,stage-2",
"build": "babel src -d build --presets es2015,stage-2",
"serve": "node build/index.js",
"clean": "rmdir /s build",
"init": "mkdir build",
"pretest": "npm run clean && npm run init && npm run build",
"test": "mocha --compilers js:babel-core/register"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^3.5.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"nodemon": "^1.12.1"
}
}