-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
42 lines (42 loc) · 1.17 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
{
"title": "CmisJS",
"name": "cmis",
"version": "1.0.3",
"homepage": "http://github.com/agea/CmisJS",
"description": "a CMIS client library written in Typescript for node and the browser",
"author": {
"name": "Andrea Agili",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/agea/cmisjs.git"
},
"dependencies": {
"cross-fetch": "~1.1.1",
"es6-promise": "~4.2.4",
"isomorphic-base64": "~1.0.2",
"isomorphic-form-data": "~1.0.0",
"url-search-params-polyfill": "~2.0.2"
},
"scripts": {
"test": "tsc && mocha dist/**/*.spec.js",
"docs": "typedoc --disableOutputCheck --mode file --name 'CmisJS Documentation' --out pages/ src/cmis.ts",
"prepare": "tsc && webpack && webpack --config=webpack.polyfills.config.js"
},
"devDependencies": {
"@types/chai": "~4.1.2",
"@types/mocha": "~2.2.48",
"@types/node": "~8.5.2",
"chai": "~4.1.2",
"mocha": "~5.0.0",
"ts-loader": "~2.0.3",
"ts-node": "~3.0.6",
"typedoc": "~0.10.0",
"typescript": "~2.7.1",
"uglify-js": "~3.3.7",
"uglifyjs-webpack-plugin": "~1.1.8",
"webpack": "~3.10.0"
}
}