forked from cghawthorne/deeplearnjs
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
37 lines (37 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
{
"name": "deeplearn",
"version": "0.1.0",
"description": "Hardware-accelerated JavaScript library for machine intelligence",
"private": false,
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/PAIR-code/deeplearnjs.git"
},
"devDependencies": {
"@types/jasmine": "~2.5.53",
"@types/polymer": "~1.1.31",
"bower": "~1.8.0",
"browserify": "~14.4.0",
"http-server": "~0.10.0",
"jasmine-core": "~2.6.4",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.0.1",
"karma-jasmine": "~1.1.0",
"karma-typescript": "~3.0.4",
"polymer-bundler": "~3.0.1",
"tsify": "~3.0.1",
"tslint": "~5.6.0",
"typedoc": "~0.7.2",
"typescript": "2.4.2",
"watchify": "~3.9.0"
},
"scripts": {
"prep": "npm install && bower install && mkdirp dist",
"build": "tsc",
"test": "karma start",
"lint": "tslint -p . --type-check -t verbose"
}
}