-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.61 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.61 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
58
59
60
61
62
63
{
"name": "v1sdk",
"version": "2.3.0",
"description": "VersionOne API Client for JavaScript",
"license": "MIT",
"keywords": [
"VersionOne",
"V1",
"SDK"
],
"homepage": "https://github.com/versionone/VersionOne.SDK.JavaScript",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:versionone/VersionOne.SDK.JavaScript.git"
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run lint && npm run clean",
"build": "babel src -d dist --ignore *.specs.js",
"lint": "eslint ./src",
"test": "./node_modules/.bin/better-npm-run test",
"prepublish": "npm test && npm run build"
},
"betterScripts": {
"test": {
"command": "mocha src/**/*.specs.js --compilers js:babel-core/register --recursive",
"env": {
"NODE_ENV": "test"
}
},
"build:prod": {
"command": "webpack --config $npm_package_webpack --progress --colors",
"env": {
"NODE_ENV": "production"
}
}
},
"dependencies": {
"btoa": "1.1.2",
"invariant": "2.2.0"
},
"devDependencies": {
"babel": "6.3.13",
"babel-cli": "6.3.17",
"babel-core": "6.3.21",
"babel-eslint": "^6.1.0",
"babel-plugin-rewire": "1.0.0-beta-3",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "6.3.13",
"babel-preset-stage-2": "6.3.13",
"babel-runtime": "6.3.19",
"better-npm-run": "0.0.8",
"chai": "3.4.1",
"chai-as-promised": "5.2.0",
"escope": "^3.3.0",
"eslint": "1.10.3",
"mocha": "2.3.4",
"sinon": "2.0.0-pre",
"wallaby-webpack": "0.0.22",
"webpack": "^1.13.1"
}
}