-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·97 lines (97 loc) · 2.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@gdixon/fre",
"version": "0.0.8",
"license": "MIT",
"description": "(F)unctional (Re)active Programming library",
"homepage": "https://github.com/gdixon/fre.js",
"main": "./index.js",
"module": "./dist/es5/index.js",
"es2015": "./dist/es2015/index.js",
"files": [
"es5",
"es2015",
"internal",
"observable",
"operator",
"scheduler",
"fre.bundle.js",
"fre.js",
"index.js",
"LICENSE",
"package.json",
"readme.md"
],
"scripts": {
"lint": "eslint ./src/*",
"lint:fix": "eslint ./src/* --fix",
"test": "babel-node ./node_modules/.bin/mocha \"./spec/**/*-spec.js\" --slow 0",
"test:watch": "nodemon --exec npm run test",
"coverage": "cross-env NODE_ENV=test ./node_modules/.bin/nyc ./node_modules/.bin/mocha \"./spec/**/*-spec.js\"",
"coverage:watch": "nodemon --exec npm run coverage",
"bundle": "node ./tools/make-esmodules.js && rollup -c",
"copy": "cp package.json ./dist/ && cp readme.md ./dist/ && cp LICENSE ./dist/",
"build": "npm run bundle && npm run copy"
},
"keywords": [
"functional",
"reactive",
"object",
"reactivity",
"react",
"freodb",
"freo",
"fre",
"frp",
"frop",
"data",
"store"
],
"author": "GDixon",
"devDependencies": {
"acorn": "^7.0.0",
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"mock-raf": "^1.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"rollup": "^2.38.0",
"@rollup/plugin-babel": "^5.2.2",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^9.0.2"
},
"nyc": {
"include": [
"src/internal/**/*.js"
],
"exclude": [
"spec/**/*-spec.js"
],
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"all": true,
"sourceMap": false,
"instrument": false
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git://github.com/gdixon/fre.js.git"
},
"dependencies": {}
}