forked from Subtletree/formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.89 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.89 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "hot-formula-parser",
"version": "3.0.0",
"description": "Formula parser",
"browser": "dist/formula-parser.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es coverage",
"lint": "eslint src test",
"check": "npm run lint && npm run test",
"test": "cross-env BABEL_ENV=commonjs jest",
"coverage": "cross-env BABEL_ENV=commonjs jest --coverage",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/formula-parser.min.js",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/formula-parser.js",
"build:dev": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --config webpack.config.js",
"generate-parser": "cd src/grammar-parser && jison grammar-parser.jison",
"release": "./node_modules/.bin/generate-release",
"prepublish": "npm run clean && npm run check && npm run build && check-es3-syntax lib/ dist/ --kill --print"
},
"repository": {
"type": "git",
"url": "https://github.com/handsontable/formula-parser.git"
},
"keywords": [
"formula",
"formulas",
"parser",
"formula-parser",
"excel",
"spreadsheet"
],
"author": "Handsoncode <hello@handsontable.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/handsontable/formula-parser/issues"
},
"homepage": "https://github.com/handsontable/formula-parser",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"chai": "^4.2.0",
"chai-stats": "^0.3.0",
"check-es3-syntax-cli": "^0.2.0",
"cross-env": "^5.2.0",
"del": "^3.0.0",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.14.0",
"generate-release": "^1.1.1",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-babel": "^8.0.0",
"gulp-env": "^0.4.0",
"gulp-eslint": "^5.0.0",
"gulp-filter": "^5.1.0",
"gulp-istanbul": "^1.1.1",
"gulp-jison": "^1.2.0",
"gulp-livereload": "^4.0.1",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.1",
"gulp-util": "^3.0.7",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jison": "^0.4.17",
"mocha": "^5.2.0",
"null-loader": "^0.1.1",
"proxyquire": "^2.1.0",
"regenerator-runtime": "^0.13.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.28.0",
"webpack-cli": "^3.1.2",
"webpack-stream": "^5.2.1",
"yargs": "^12.0.5"
},
"babelBoilerplateOptions": {
"entryFileName": "index",
"mainVarName": "formulaParser",
"rimraf": "^2.3.4",
"webpack": "^3.2.0"
},
"dependencies": {
"decimal.js": "^10.0.2",
"formulajs": "github:LesterLyu/formula.js#develop",
"tiny-emitter": "^2.0.2"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-modules-commonjs"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./test/index.js",
"testPathIgnorePatterns": [
"./test/index.js"
],
"roots": [
"./test"
],
"testRegex": "(test\\/index\\.js|/test/.*.js)$",
"collectCoverageFrom": [
"**/*.{js}",
"!src/grammar-parser/**"
]
}
}