forked from liquidcarrot/carrot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.86 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@liquid-carrot/carrot",
"version": "0.1.120",
"description": "A Simple Node.js AI Library for Neural Network",
"main": "src/carrot",
"scripts": {
"preversion": "npm run build:stash && git pull && npm test",
"version": "./node_modules/.bin/webpack && git add .",
"postversion": "git push; npm publish; npm run build; npm run build:pop",
"jsdoc": "node_modules/.bin/jsdoc -r -c jsdoc.json",
"build:stash": "> .temp && git add . && git stash",
"build:docs": "npm run jsdoc && npm run deploy:docs",
"deploy:docs": "git add . && git stash && git branch -f gh-pages && git checkout gh-pages && git reset --hard origin/master && git merge --squash --strategy-option=theirs stash && git stash drop && git commit -m 'Auto-build' && git push origin gh-pages -f && git checkout master",
"build:pop": "git stash pop && rm -f .temp && git add .temp",
"build": "npm run build:stash && npm run build:docs; npm run build:pop",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | coveralls && rm -rf ./src-cov",
"test": "./node_modules/.bin/nyc --reporter=html --reporter=text mocha test/",
"test:forever": "./node_modules/.bin/nodemon ./node_modules/.bin/mocha --reporter spec test/",
"clean:docfiles": "find . -type f -name '*.html' -exec rm {} + && rm -rf styles/ && rm -rf scripts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liquidcarrot/carrot.git"
},
"keywords": [
"Artificial Intelligence",
"AI",
"Deep Learning",
"DL",
"Machine Learning",
"ML",
"Neural Network",
"Neural Networks",
"NN",
"Convolutional Neural Network",
"Convolutional Neural Networks",
"Convolutional NN",
"Convolutional NNs",
"CNN",
"Artificial Neural Network",
"Artificial Neural Networks",
"Artificial NN",
"Artificial NNs",
"ANN",
"Recurrent Neural Network",
"Recurrent Neural Networks",
"Recurrent NN",
"Recurrent NNs",
"RNN",
"Perceptron",
"Sigmoid",
"TanH",
"ArcTan"
],
"author": "Luis Carbonell <[email protected]>",
"contributors": [
"Luis Ernesto Carbonell <[email protected]>",
"Christian George Echevarria <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/liquidcarrot/carrot/issues"
},
"homepage": "https://liquidcarrot.io/",
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"chai-each": "0.0.1",
"copy-webpack-plugin": "^5.0.2",
"coveralls": "^3.0.3",
"faker": "^4.1.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.11",
"nyc": "^13.3.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"nyc": {
"include": [
"src/architecture/*.js"
],
"exclude": [
"test",
"util"
]
},
"browser": {
"fs": false,
"child_process": false
}
}