-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.87 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
{
"name": "appworks-js",
"description": "JavaScript library providing an interface for native bindings provided by AppWorks mobile and desktop clients.",
"version": "22.3.2",
"author": "OpenText Inc",
"bugs": "https://github.com/opentext/appworks-js/issues",
"dependencies": {
"@types/cordova": "0.0.34",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/chai": "3.4.34",
"@types/es6-promise": "0.0.32",
"@types/lodash": "^4.14.74",
"@types/mocha": "2.2.38",
"@types/sinon": "1.16.34",
"@types/node": "^8.10.0",
"chai": "3.5.0",
"concurrently": "3.1.0",
"es6-promise": "4.0.5",
"mocha": "^5.2.0",
"rollup": "0.40.2",
"rollup-plugin-commonjs": "7.0.0",
"rollup-plugin-inject": "2.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"rollup-plugin-typescript": "0.8.1",
"rollup-plugin-uglify": "1.0.1",
"sinon": "1.17.7",
"ts-node": "2.0.0",
"tslint": "4.0.1",
"typescript": "2.3.4"
},
"files": [
"index.ts",
"src/**/*",
"test/mock/*",
"node_modules/es6-promise"
],
"homepage": "https://github.com/opentext/appworks-js",
"keywords": [
""
],
"license": "LICENSE",
"main": "src/index.js",
"module": "",
"legacy": "dist/appworks.js",
"legacy:min": "dist/appworks.min.js",
"repository": "https://github.com/opentext/appworks-js",
"scripts": {
"ts:export": "tsc index.ts --target es5 --sourceMap --moduleResolution node --module commonjs --declaration --lib DOM,ES5",
"build": "rollup -c && rollup -c --environment BUILD:min",
"lint": "tslint -c tslint.json ./src/**/*.ts",
"prebuild": "npm run test",
"test": "mocha --compilers ts:ts-node/register test/**.spec.ts test/**/*.spec.ts",
"pretest": "npm run ts:export",
"test:watch": "mocha --compilers ts:ts-node/register test/**.spec.ts test/**/*.spec.ts --watch"
},
"types": "index.d.ts"
}