-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
{
"name": "@nprindle/bob",
"version": "1.0.1",
"description": "Super typesafe, boilerplate-free builders for TypeScript",
"main": "dist/bob.umd.js",
"module": "dist/bob.es5.js",
"types": "dist/types/bob.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "npx shx --silent rm -r dist/ || npx shx true",
"compile": "npx tsc --module commonjs",
"compile:watch": "npx tsc --watch",
"rollup": "npx rollup -c rollup.config.ts",
"build": "npm run clean && npm run compile && npm run rollup"
},
"dependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"rollup": "^1.32.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.26.0",
"shx": "^0.3.2",
"source-map": "^0.7.3",
"typescript": "^3.8.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nprindle/bob.git"
},
"author": "Nicole Prindle <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nprindle/bob/issues"
},
"homepage": "https://github.com/nprindle/bob#readme",
"keywords": [
"typescript",
"builder",
"design patterns",
"software design patterns",
"oop",
"object oriented programming"
]
}