-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "uservoice-nodejs",
"version": "0.0.12",
"description": "Node.js SDK for UserVoice",
"main": "./dist/src/index.js",
"scripts": {
"test": "mocha tests/**/*.spec.ts --require ts-node/register",
"start": "tsc -w",
"compile": "npm run clean && npm run build",
"build": "tsc && npm run lint && npm run copy-static",
"clean": "rimraf dist",
"lint": "tslint 'src/**/*.ts' --exclude '**/*.d.ts'",
"example": "ts-node ./example/server.ts",
"example-v2": "ts-node ./example/server_v2.ts",
"copy-static": "cp example/attachment.txt dist/example",
"prepublish": "npm run compile"
},
"keywords": [
"uservoice"
],
"license": "MIT",
"author": "Luke Autry <[email protected]>",
"dependencies": {
"bluebird": "^3.4.7",
"moment": "^2.17.1",
"oauth": "^0.9.15",
"request": "^2.79.0"
},
"devDependencies": {
"@types/bluebird": "^3.0.37",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.36",
"@types/request": "0.0.39",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"rimraf": "^2.5.4",
"ts-node": "^2.0.0",
"tslint": "^3.15.1",
"typescript": "^2.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uservoice/uservoice-nodejs.git"
},
"bugs": {
"url": "https://github.com/uservoice/uservoice-nodejs/issues"
},
"homepage": "https://github.com/uservoice/uservoice-nodejs#readme",
"engines": {
"node": ""
}
}