This repository was archived by the owner on Mar 6, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 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
{
"name": "mediasmart-util",
"description": "Wonderful reusable code from mediasmart http://mediasmart.io — Edit",
"version": "0.0.2",
"main": "./lib/index.js",
"homepage": "",
"author": {
"name": "Javier Jimenez Villar",
"url": "http://github.com/soyjavi"
},
"contributors": [
{
"name": "Javi Jimenez Villar",
"email": "soyjavi@protonmail.com",
"url": "http://soyjavi.com/"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/mediasmart/util.git"
},
"bugs": {
"url": "https://github.com/mediasmart/util/issues"
},
"scripts": {
"start": "npm run build",
"test": "mocha --recursive --compilers js:babel-register --require babel-polyfill",
"build": "babel src --out-dir lib",
"lint": "eslint src/**"
},
"license": "MIT",
"dependencies": {
"moment": "2.13.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.0",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-react": "^6.0.0",
"mocha": "^2.5.3"
}
}