forked from handsontable/formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.81 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "hot-formula-parser",
"version": "2.2.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",
"generate-parser": "cd src/grammar-parser && jison grammar-parser.jison",
"release": "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 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/handsontable/formula-parser/issues"
},
"homepage": "https://github.com/handsontable/formula-parser",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-es2015-computed-properties": "^6.24.1",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.24.1",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-es2015-object-super": "^6.24.1",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.24.1",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.24.1",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-register": "^6.24.1",
"check-es3-syntax-cli": "^0.2.0",
"cross-env": "^5.0.1",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.7.0",
"generate-release": "^0.10.2",
"glob": "^7.1.2",
"jest": "^20.0.4",
"jison": "^0.4.17",
"jscs": "^3.0.7",
"null-loader": "^0.1.1",
"rimraf": "^2.3.4",
"webpack": "^3.2.0"
},
"dependencies": {
"formulajs": "github:handsontable/formula.js#1.2.1",
"tiny-emitter": "^2.0.1"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/index.js",
"testPathIgnorePatterns": [
"./test/index.js"
],
"roots": [
"./test"
],
"testRegex": "(test\\/index\\.js|/test/.*.js)$",
"collectCoverageFrom": [
"**/*.{js}",
"!src/grammar-parser/**"
]
}
}