Skip to content

Commit 7ac2c41

Browse files
committed
Rewrite module
* Remove support for Bower, Component, Duo; * Refactor code-style; * Update docs; * Update tests.
1 parent 598e229 commit 7ac2c41

File tree

13 files changed

+653
-984
lines changed

13 files changed

+653
-984
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true

.eslintrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
.DS_Store
22
*.log
3-
node_modules/
3+
.nyc_output/
44
coverage/
5+
node_modules/
6+
plain-text-data-to-json.js
7+
plain-text-data-to-json.min.js

.jscs.json

Lines changed: 0 additions & 144 deletions
This file was deleted.

.npmignore

Lines changed: 0 additions & 6 deletions
This file was deleted.

.travis.yml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
language: node_js
2-
before_install:
3-
- npm update -g npm
4-
script: npm run-script test-travis
52
node_js:
6-
- '0.10'
73
- '0.11'
8-
after_script: npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls
4+
- '0.12'
5+
- '4.0'
6+
- '5.0'
7+
- '6.0'
8+
after_success: bash <(curl -s https://codecov.io/bash)
9+
sudo: false
910
deploy:
10-
provider: npm
11-
email: tituswormer@gmail.com
12-
api_key:
13-
secure: kVRUR6vE8yHb3zDblXnup0k6t8p7max0aK++DYBZCSpnIF+rIzqTjg4FdDv8Hv0Hdi/52PiYrBSBw8VdCRGhQlwmVXzNOllAy7+ucZya9zlpmpvken7bjQDifgbKqkxplMyNaUgLggDTEVyfIcPbBAagiV/hrp+M6/viLw++GN0=
14-
on:
15-
repo: wooorm/plain-text-data-to-json
11+
- provider: npm
12+
email: tituswormer@gmail.com
13+
api_key:
14+
secure: Q6JtoC1bAeMqQmw2fl+xdFxv4wScuUmjNgr/Fc8rLT0z+i84Rp1rJayojOBgFVkpLO5rhJ71OrP4NN4vpAtSp6+hvIqhFNAT98DQqFh6VKEa0TCRFTYzKiCLlKKfMun69slznwjjZGq4JrCLpLs/xuDVJp/sNxzPSSIcXVQ3Drc=
15+
on:
16+
tags: true
17+
node: '5.0'
18+
- provider: releases
19+
api_key:
20+
secure: X6QF7zle+i+uRKy4c1km2m6ZH2AmbFQqnqP4BGoI4CBB+6tRiQCGoz8wd8LkfBemJcaAaS5O/g9ltb/n+QLHG1sMo8pTy0p4YVGOz6Jp8W0JspSkd9J4gEflTqJ0N7ONXCfHbhb9Lq399OkNyR8lc9432bbLv35zc+0y3deIHFE=
21+
file:
22+
- "plain-text-data-to-json.js"
23+
- "plain-text-data-to-json.min.js"
24+
on:
25+
tags: true
26+
node: '6.0'

History.md

Lines changed: 0 additions & 43 deletions
This file was deleted.

Readme.md

Lines changed: 0 additions & 127 deletions
This file was deleted.

history.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!--remark setext-->
2+
3+
<!--lint disable no-multiple-toplevel-headings-->
4+
5+
0.1.3 / 2014-12-16
6+
==================

0 commit comments

Comments
 (0)