-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "itako",
"description": "a pluggable text reader",
"version": "0.4.1",
"main": "lib",
"files": [
"lib"
],
"scripts": {
"start": "ava --watch",
"test": "ava",
"lint": "eslint src test",
"cover": "abby cover:*",
"cover:test": "nyc --reporter=lcov --reporter=text ava",
"cover:report": "node -e \"if(process.env.TRAVIS){}else{process.exit(1)}\" && codeclimate-test-reporter < coverage/lcov.info || echo skip coverage report",
"build": "abby build:* --env",
"build:compile": "rollup -c",
"postversion": "git push --follow-tags && conventional-github-releaser -p angular -r 0"
},
"abigail": {
"plugins": {
"watch": false,
"parse": "serial",
"launch": "force"
}
},
"ava": {
"files": [
"test/options.js",
"test/transform.js",
"test/read.js",
"test/events.js"
],
"require": [
"babel-register"
]
},
"devDependencies": {
"abigail": "^1.6.1",
"assert-exception": "^1.1.0",
"ava": "^0.14.0",
"ava-spec": "^1.0.0",
"babel-cli": "^6.6.5",
"babel-eslint": "^6.0.2",
"babel-plugin-espower": "^2.1.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.7.2",
"bluebird": "^3.3.4",
"carrack": "^0.4.0",
"chokidar": "^1.5.0",
"codeclimate-test-reporter": "^0.3.1",
"conventional-changelog-cli": "^1.2.0",
"conventional-github-releaser": "^1.1.1",
"eslint": "^2.10.1",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.0",
"itako-token": "^0.3.0",
"lodash.flattendeep": "^4.2.0",
"lodash.get": "^4.3.0",
"lodash.set": "^4.2.0",
"nyc": "^6.4.4",
"pascal-case": "^1.1.2",
"rollup": "^0.26.3",
"rollup-plugin-babel": "^2.4.0",
"rollup-plugin-commonjs": "^2.2.1",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.4.0",
"rollup-plugin-uglify": "^0.3.1",
"sinon": "^1.17.4"
},
"repository": {
"type": "git",
"url": "https://github.com/itakojs/itako.git"
},
"keywords": [
"itako",
"text",
"reader"
],
"author": "59naga <[email protected]> (http://berabou.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/itakojs/itako/issues"
},
"homepage": "https://github.com/itakojs/itako#readme"
}