-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 KB
/
package.json
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
{
"name": "tama",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "babel src/ --out-dir dist",
"dev": "babel --watch src/ --out-dir dist",
"prepare": "npm run docs:update && npm run lint && npm run test && npm run build",
"test": "jest",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage; opn coverage/lcov-report/index.html",
"lint": "eslint -c .eslintrc.yml src",
"lint:fix": "eslint -c .eslintrc.yml --fix src",
"docs:update": "babel-node docs/generateDocs.js"
},
"author": "Guilherme Lima",
"license": "ISC",
"dependencies": {
"base-64": "^0.1.0",
"fecha": "^2.3.0",
"jest": "^18.1.0",
"joi": "^10.2.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"ws": "^1.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/guilhermelimak/tama.git"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-module-resolver": "^2.4.0",
"babel-plugin-transform-es2015-modules-umd": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-import-resolver-babel-module": "^2.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jest": "^1.0.2",
"opn-cli": "^3.1.0",
"joi-to-markdown": "^1.0.1",
"semantic-release": "^6.3.2"
}
}