-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "data-ornament",
"author": "Luis Miguel Santamaría Pérez",
"version": "0.1.1",
"description": "Librería para procesar texto y datos en JSON y XML",
"main": "dist/data-ornament.js",
"license": "MIT",
"babel": {
"presets": [
"flow",
"env"
]
},
"engines": {
"node": ">=8.6.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"bithound": "^1.7.0",
"coveralls": "^3.0.0",
"documentation": "^5.3.3",
"eslint": "^4.8.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-flow": "^1.0.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"file-loader": "^1.1.5",
"flow-bin": "^0.58.0",
"generate-changelog": "^1.5.0",
"happypack": "^4.0.0",
"jest": "^21.2.1",
"source-map-loader": "^0.2.1",
"url-loader": "^0.6.2",
"webpack": "^3.7.1"
},
"scripts": {
"build": "webpack --config ./webpack.config.js -p",
"dev": "webpack --config ./webpack.config.js",
"doc": "./node_modules/documentation/bin/documentation.js build src/** -f md -g -o API.md && git add API.md && git commit -m 'docs(app): Actualizar documentación' && git push origin master",
"test": "jest",
"cover": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'Actualizar CHANGELOG.md' && npm version minor && git push origin master --tags && sudo npm publish",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'Actualizar CHANGELOG.md' && npm version major && git push origin master --tags && sudo npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'Actualizar CHANGELOG.md' && npm version patch && git push origin master --tags && sudo npm publish"
},
"dependencies": {
"ramda": "^0.25.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lmsp/data-ornament.git"
}
}