-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "readtable",
"version": "0.0.1",
"description": "Readtables in JavaScript!",
"main": "dist/index.js",
"engines": {
"node": ">=7.0.0"
},
"author": "Gabe Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabejohnson/readtable/issues"
},
"homepage": "https://github.com/gabejohnson/readtable#readme",
"files": [
"dist",
"src"
],
"scripts": {
"lint": "eslint src test && flow",
"prebuild": "mkdir -p dist",
"build": "babel --source-maps-inline --out-dir dist src",
"pretest": "npm run lint",
"test": "ava",
"prepublish": "npm test && npm run build",
"postpublish": "rm -r dist"
},
"repository": {
"type": "git",
"url": "git://github.com/gabejohnson/readtable.git"
},
"keywords": [
"readtables",
"reader",
"macros",
"javascript"
],
"devDependencies": {
"ava": "avajs/ava",
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.22.0",
"eslint": "^3.14.0",
"eslint-plugin-flowtype": "^2.30.0",
"flow-bin": "^0.55.0"
},
"ava": {
"babel": "inherit",
"files": [
"test/test-char-stream.js",
"test/test-readtable.js",
"test/test-reader.js"
],
"require": [
"babel-register"
]
}
}