-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 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
{
"name": "expression-language",
"version": "2.5.4",
"description": "Javascript implementation of symfony/expression-language",
"main": "lib/index.js",
"types": "dist/index.d.ts",
"browser": "dist/expression-language.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jameskfry/expression-language.git"
},
"scripts": {
"build": "rm -rf lib && babel src -d lib",
"build:browser": "rollup -c && cp types/index.d.ts dist/index.d.ts",
"build:all": "npm run build && npm run build:browser",
"prepublishOnly": "npm run build:all",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/lib"
],
"reporters": [
"default",
"<rootDir>/jest-reporter.cjs"
]
},
"keywords": [
"expression",
"language"
],
"author": "James K Fry",
"license": "MIT",
"dependencies": {
"locutus": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^1.0.0",
"jest": "^30.0.5",
"rollup": "^4.0.0"
}
}