-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.48 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
{
"name": "@reasonscore/core",
"main": "lib/index.js",
"version": "0.3.13",
"description": "Core code for Reason Score http://ReasonScore.com",
"scripts": {
"build": "npm run build:types && npm run build:js",
"upgrade-all": "ncu -u && npm install",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"bundle": "rollup -c",
"test": "jest",
"old-publish-package": "npm run build && npm run bundle && npm publish"
},
"author": "Bentley Davis <[email protected]> (http://BentleyDavis.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReasonScore/core/issues"
},
"homepage": "https://github.com/ReasonScore/core#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"minimist": ">=1.2.5",
"mixin-deep": ">=2.0.1",
"npm-check-updates": "^12.0.5",
"rollup": "^2.62.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"set-value": "^4.1.0",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
}
}