-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 933 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 933 Bytes
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
{
"name": "@webdesignio/client",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"test": "ava",
"start": "scripts/start",
"prepublish": "scripts/build"
},
"ava": {
"source": [
"src/*.js"
],
"files": [
"src/*_test.js"
]
},
"standard": {
"parser": "babel-eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/webdesignio/js-client.git"
},
"bugs": {
"url": "https://github.com/webdesignio/js-client/issues"
},
"homepage": "https://github.com/webdesignio/js-client#readme",
"description": "",
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.14.0",
"standard": "^7.1.2",
"watch-run": "^1.2.4"
},
"dependencies": {
"shortid": "^2.2.6"
}
}