-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 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
{
"name": "leftpad-client",
"version": "1.0.0",
"description": "A client library to access the essential left-pad.io API",
"main": "build/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-register --recursive",
"lint": "./node_modules/.bin/eslint index.js",
"build": "NODE_ENV=production MINIFY=1 webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itagenten/left-pad-client.git"
},
"keywords": [
"left-pad",
"string",
"alignment"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/itagenten/left-pad-client/issues"
},
"homepage": "https://github.com/itagenten/left-pad-client#readme",
"devDependencies": {
"babel-core": "^6.7.4",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^2.4.0",
"estraverse-fb": "^1.3.1",
"expect": "^1.16.0",
"mocha": "^2.4.5",
"webpack": "^1.12.14"
},
"dependencies": {
"es6-promise": "^3.1.2",
"isomorphic-fetch": "^2.2.1"
}
}