-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "positional-flat-file-to-json",
"version": "1.1.0",
"description": "Converts a positional flat file to json",
"main": "./dist/index.js",
"dependencies": {
"fs-extra": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"mocha": "^3.5.0",
"xo": "^0.18.2"
},
"scripts": {
"init": "mkdir dist",
"start": "npm run dev",
"dev": "npm test -- -w",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src -d ./dist",
"pretest": "npm run build",
"test": "xo && mocha --compilers js:babel-core/register ./test/**/*.js",
"precommit": "npm test && npm run build",
"prepublish": "npm run build"
},
"xo": {
"env": [
"mocha"
],
"rules": {
"no-unused-vars": [
"error",
{
"varsIgnorePattern": "mocha"
}
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/dankraus/positional-flat-file-to-json"
},
"keywords": [
"flatfile",
"flat",
"file",
"positional",
"json",
"convert",
"parse"
],
"author": "Dan Kraus <[email protected]> (http://dskraus.com)",
"license": "BSD-3-Clause"
}