-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.39 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"name": "@feakin/parser",
"version": "0.3.0",
"description": "",
"main": "dist/feakin.core.js",
"module": "dist/feakin.esm.min.mjs",
"exports": {
".": {
"require": "./dist/feakin.core.js",
"import": "./dist/feakin.esm.min.mjs"
},
"./*": "./*"
},
"scripts": {
"build:development": "webpack --mode development --progress --color",
"build:production": "webpack --mode production --progress --color",
"build": "concurrently \"npm run build:development\" \"npm run build:production\"",
"test": "jest src/.*"
},
"keywords": [],
"author": "Phodal Huang<h@phodal.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.2",
"concurrently": "^7.3.0",
"jison": "^0.4.18",
"path-browserify": "^1.0.1",
"ramda": "^0.28.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
},
"files": [
"dist/**",
"src/**",
"!**/*.spec.*",
"!**/*.json",
"!test/**",
"!coverage/**",
"!_fixtures",
"!scripts",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"gitHead": "8c6457d2f5bf987f8edb6049e9a32813a2f50d80"
}