-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2 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
{
"name": "sas7bdat",
"version": "0.1.7",
"description": "Read SAS files in JavaScript. Because you always wanted to do that, right?",
"homepage": "https://github.com/dumbmatter/sas7bdat-js",
"repository": {
"type": "git",
"url": "git://github.com/dumbmatter/sas7bdat-js.git"
},
"bugs": {
"url": "https://github.com/dumbmatter/sas7bdat-js/issues"
},
"main": "build/index.js",
"scripts": {
"build": "rm -rf build && babel *.js -d build",
"prepublish": "npm run build",
"eslint": "eslint *.js test/*.js",
"mocha": "mocha --compilers js:babel-register --max-old-space-size=15000",
"test": "npm run eslint && npm run mocha"
},
"author": "Jeremy Scheff <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"csv-stringify": "^1.0.4",
"denodeify": "^1.2.1",
"fs-ext": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"csv-parse": "^1.1.0",
"eslint": "^2.9.0",
"mocha": "^2.4.5"
},
"babel": {
"plugins": [
"transform-es2015-template-literals",
"transform-es2015-literals",
"transform-es2015-function-name",
"transform-es2015-arrow-functions",
"transform-es2015-block-scoped-functions",
"transform-es2015-classes",
"transform-es2015-object-super",
"transform-es2015-shorthand-properties",
"transform-es2015-duplicate-keys",
"transform-es2015-computed-properties",
"transform-es2015-for-of",
"transform-es2015-sticky-regex",
"transform-es2015-unicode-regex",
"check-es2015-constants",
"transform-es2015-spread",
"transform-es2015-parameters",
"transform-es2015-destructuring",
"transform-es2015-block-scoping",
"transform-es2015-typeof-symbol",
"transform-es2015-modules-commonjs",
"transform-async-to-generator"
]
},
"files": [
"build"
]
}