-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "interpolatable",
"version": "1.3.2",
"description": "Fast memoization for interpolatable entities",
"main": "build/index.js",
"browser": "build/bundle.min.js",
"author": "Adam Jenkins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/akmjenkins/interpolatable"
},
"bugs": {
"url": "https://github.com/akmjenkins/interpolatable/issues"
},
"keywords": [
"interpolation",
"memoization"
],
"files": [
"build",
"index.d.ts"
],
"scripts": {
"clean": "rimraf build",
"build": "yarn clean && yarn babel && rollup -c",
"babel": "babel index.js -d build",
"lint": "eslint index.js",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.7.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"jsonpointer": "^5.0.0",
"prettier": "^2.3.2",
"property-expr": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}