-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "be-good",
"version": "0.3.0",
"description": "Simple and flexible data decoding",
"author": "hoichi <[email protected]>",
"license": "MIT",
"keywords": [
"data",
"decoder",
"decoding",
"typechecking",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hoichi/be-good.git"
},
"homepage": "https://github.com/hoichi/be-good.git#readme",
"bugs": {
"url": "https://github.com/hoichi/be-good.git#readme"
},
"main": "lib/index.js",
"module": "lib.es2015/index.js",
"jsnext:main": "lib.es2015/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "npm run build:commonjs && npm run build:es2015 && npm run build:umd",
"build:commonjs": "./node_modules/.bin/tsc -P cfg/tsconfig.commonjs.json",
"build:es2015": "./node_modules/.bin/tsc -P cfg/tsconfig.es2015.json",
"build:umd": "mkdir -p dist && rollup -c --name 'be-good' && uglifyjs dist/be-good.js -o dist/be-good.min.js",
"prepublishOnly": "npm run build",
"preversion": "npm run build",
"test": "tsc && jest --watch"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-node-resolve": "^7.1.0",
"@rollup/plugin-typescript": "^3.0.0",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.149",
"jest": "^25.5.4",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"rollup": "^1.31.0",
"ts-jest": "^25.4.0",
"tslib": "^1.10.0",
"typescript": "^3.9.2",
"uglify-js": "^3.7.6"
}
}