-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.5 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
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
{
"name": "rally",
"version": "2.1.3",
"description": "Rally REST Toolkit for Node.js",
"contributors": [
{
"name": "Kyle Morse",
"email": "kyle.morse@ca.com"
},
{
"name": "Matt Parrish",
"email": "matthew.parrish@ca.com"
},
{
"name": "Willy Douglas",
"email": "william.douglas@ca.com"
}
],
"main": "dist/index.js",
"scripts": {
"build": "cross-env BABEL_ENV=commonjs babel lib --out-dir dist",
"lint": "eslint .",
"prepublish": "npm run build",
"example:crud": "npm run build && node examples/crud.js",
"example:query": "npm run build && node examples/query.js",
"test": "mocha --compilers js:babel-register spec/*.js spec/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/RallyTools/rally-node.git"
},
"dependencies": {
"babel-runtime": "6.11.6",
"lodash": "^4.17.11",
"request": "^2.88.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "6.1.2",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-latest": "6.14.0",
"babel-preset-stage-1": "6.13.0",
"babel-register": "6.14.0",
"cross-env": "2.0.0",
"eslint": "2.13.1",
"mocha": "5.2.0",
"should": "10.0.0",
"sinon": "1.17.3"
},
"author": "Kyle Morse",
"license": "MIT",
"bugs": {
"url": "https://github.com/RallyTools/rally-node/issues"
},
"homepage": "https://github.com/RallyTools/rally-node"
}