forked from SodiumFRP/sodium-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.36 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.36 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "sodiumjs",
"version": "3.0.7",
"description": "A Functional Reactive Programming (FRP) library for JavaScript",
"author": "Stephen Blackheath",
"license": "BSD-3-Clause",
"homepage": "https://github.com/SodiumFRP/sodium-typescript",
"repository": {
"type": "git",
"url": "https://github.com/SodiumFRP/sodium-typescript.git"
},
"bugs": {
"url": "https://github.com/SodiumFRP/sodium-typescript/issues"
},
"keywords": [
"frp",
"functional",
"reactive",
"typescript",
"sodium"
],
"main": "dist/sodium.cjs.js",
"module": "dist/sodium.esm.js",
"typings": "./dist/typings/Lib.d.ts",
"scripts": {
"install:example": "cd example && npm install",
"clean:all": "npm-run-all clean clean:example",
"build:all": "npm-run-all build build:example",
"clean": "rimraf ./dist",
"build": "npm-run-all clean rollup:build:umd rollup:build typings:emit",
"typings:emit": "tsc --emitDeclarationOnly true",
"build:example": "npm-run-all clean:example _build:example",
"_build:example": "cd example && npm run build",
"clean:example": "cd example && npm run clean",
"dev": "npm-run-all -s clean -p rollup:watch",
"rollup:build": "cross-env NODE_ENV=production rollup -c",
"rollup:build:umd": "cross-env NODE_ENV=production rollup -c rollup.config.umd.js",
"rollup:watch": "cross-env NODE_ENV=production rollup -c -w",
"test": "jest",
"prepublishOnly": "npm run build"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"devDependencies": {
"@types/jest": "23.3.1",
"@types/node": "^10.9.4",
"cross-env": "^5.2.0",
"fantasy-laws": "^1.1.0",
"jest": "23.5.0",
"jsverify": "^0.8.3",
"live-server": "1.2.0",
"minify": "3.0.5",
"npm-run-all": "4.1.3",
"rimraf": "^2.6.2",
"rollup": "0.65.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-typescript2": "0.17.0",
"rollup-plugin-uglify": "5.0.2",
"sanctuary": "0.15.0",
"ts-jest": "23.1.4",
"ts-node": "7.0.1",
"tslib": "1.9.3",
"typescript": "^3.0.3",
"uglify-es": "3.3.10"
},
"dependencies": {
"typescript-collections": "^1.3.2",
"sanctuary-type-classes": "^9.0.0"
}
}