-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "booltable",
"version": "0.6.0",
"description": "Functional alternatives to complex and incongruent conditional statements",
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"test": "jest --env=node",
"build": "tsc",
"build-production": "tsc --build tsconfig-prod.json",
"prepublishOnly": "npm run build-production && npm run bundle",
"bundle": "webpack --config webpack.config.js"
},
"author": "Robert Gerald Porter <[email protected]>",
"license": "MIT",
"repository": {
"url": "[email protected]:rgeraldporter/booltable.git",
"type": "git"
},
"devDependencies": {
"@types/jest": "23.3.1",
"awesome-typescript-loader": "5.2.0",
"jest": "23.5.0",
"source-map-loader": "0.2.4",
"ts-jest": "23.1.4",
"webpack": "4.17.1",
"webpack-cli": "3.1.0"
},
"dependencies": {
"simple-maybe": "1.0.1",
"typescript": "3.0.1"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/types.d.ts",
"dist/types.js",
"bundles/booltable.min.js",
"bundles/booltable.min.js.map"
]
}