-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "prototxt-parser",
"version": "0.1.5",
"description": "a prototxt parser for js based on parsimmon",
"main": "dist/node/index.js",
"types": "dist/node/index.d.ts",
"unpkg": "dist/browser/prototxt-parser.min.js",
"scripts": {
"test": "karma start",
"test-travis": "karma start --browsers='Firefox,Chrome' --singleRun",
"build": "gulp build",
"publish-npm": "npm install && gulp build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chaosmail/prototxt-parser.git"
},
"keywords": [
"caffe",
"prototxt",
"parser"
],
"author": "Christoph Koerner",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.54",
"@types/parsimmon": "^1.3.1",
"browserify": "~14.4.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-typescript": "^3.2.3",
"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-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.8",
"run-sequence": "^2.2.0",
"tinyify": "^2.3.0",
"tsify": "~3.0.1",
"tslint": "~5.6.0",
"tslint-no-circular-imports": "~0.2.0",
"typescript": "2.5.3",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"parsimmon": "^1.6.2"
}
}