-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.55 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
{
"name": "@jvitela/recompute",
"version": "0.3.5",
"description": "Selector functions based on Observable and Computed values.",
"main": "lib/index.js",
"scripts": {
"test": "better-npm-run test",
"test:debug": "better-npm-run test:debug",
"test:cov": "better-npm-run test:cov",
"compile:commonjs": "better-npm-run compile:commonjs",
"compile:umd": "better-npm-run compile:umd",
"compile:es": "babel -d es/ src/",
"compile": "npm run compile:commonjs && npm run compile:umd && npm run compile:es",
"how_to_publish": "echo 'npm publish --access public'"
},
"keywords": [
"selector",
"computed",
"memoized",
"redux"
],
"bugs": {
"url": "https://github.com/jvitela/recompute/issues"
},
"author": "jvitela",
"repository": {
"type": "git",
"url": "git+https://github.com/jvitela/recompute.git"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-check-constants": "^7.0.0-beta.38",
"@babel/plugin-transform-arrow-functions": "^7.14.5",
"@babel/plugin-transform-block-scoping": "^7.14.5",
"@babel/plugin-transform-function-name": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/plugin-transform-modules-umd": "^7.14.5",
"@babel/plugin-transform-parameters": "^7.14.5",
"@babel/plugin-transform-shorthand-properties": "^7.14.5",
"@babel/plugin-transform-spread": "^7.14.6",
"@babel/plugin-transform-template-literals": "^7.14.5",
"@babel/register": "^7.14.5",
"better-npm-run": "^0.1.1",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"betterScripts": {
"test": {
"command": "mocha --require @babel/register --ui tdd --recursive",
"env": {
"NODE_ENV": "test"
}
},
"test:debug": {
"command": "mocha --inspect-brk --require @babel/register --ui tdd --recursive",
"env": {
"NODE_ENV": "test"
}
},
"test:cov": {
"command": "nyc --reporter=lcov --reporter=text mocha --require @babel/register --ui tdd",
"env": {
"NODE_ENV": "test",
"COVERAGE": "true"
}
},
"compile:commonjs": {
"command": "babel -d lib/ src/",
"env": {
"NODE_ENV": "commonjs"
}
},
"compile:umd": {
"command": "mkdir dist/ && babel -o dist/recompute.js src/",
"env": {
"NODE_ENV": "umd"
}
}
},
"homepage": "https://github.com/jvitela/recompute#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}