-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
37 lines (37 loc) · 951 Bytes
/
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
{
"name": "syntax-parser",
"version": "1.0.18",
"pri": {
"type": "component"
},
"scripts": {
"start": "node --max-old-space-size=16384 --max_old_space_size=16384 ./node_modules/.bin/pri dev",
"build": "npx babel --extensions .ts,.tsx src -d dist/cjs --source-maps --config-file ./babel.config.js",
"test": "npx jest"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@babel/runtime": "7.7.5",
"@types/lodash": "^4.14.190",
"jest": "^29.3.1",
"lodash": "^4.17.21"
},
"main": "./dist/cjs/index.js",
"module": "./dist/cjs/index.js",
"typings": "./src/index.ts",
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"dependencies": {
"pri": "^4.4.0"
}
}