-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
86 lines (86 loc) · 2.11 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
{
"name": "pandas-js",
"version": "0.2.4",
"description": "Pandas for JavaScript",
"author": "StratoDem Analytics [email protected]",
"contributors": [
{
"name": "Michael Clawar"
},
{
"name": "Raymond Mead"
}
],
"main": "./dist/index.js",
"files": [
"dist/",
"src/"
],
"dependencies": {
"immutable": "^3.8.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "^0.54.0",
"flow-remove-types": "^1.2.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"jsdoc-parse": "^3.0.0",
"jsdoc-to-markdown": "^3.0.0",
"npm-check-updates": "^2.12.1"
},
"repository": {
"type": "git",
"url": "https://github.com/StratoDem/pandas-js.git"
},
"jest": {
"modulePaths": [
"/shared/vendor/modules",
"<rootDir>/src/es6"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components",
"shared"
],
"roots": [
"src/js"
]
},
"keywords": [
"pandas",
"data-analysis",
"analytics"
],
"bugs": {
"url": "https://github.com/StratoDem/pandas-js/issues"
},
"homepage": "https://github.com/StratoDem/pandas-js",
"scripts": {
"build": "babel src/es6 --out-dir dist --no-comments",
"check_updates": "./node_modules/npm-check-updates/bin/npm-check-updates",
"test": "jest --verbose --runInBand",
"version_patch": "npm version patch",
"_publish": "npm publish"
},
"license": "MIT"
}