forked from caiogondim/fast-memoize.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "fast-memoize",
"version": "2.0.2",
"description": "Fastest memoization lib that supports N arguments",
"main": "src/index.js",
"scripts": {
"test": "tape test/*.js --cov --reporter=spec",
"test:lint": "standard \"src/**/*.js\" \"test/**/*.js\" \"benchmark/**/*.js\"",
"test:coverage": "covert test/*.js",
"test:cov": "npm run test:coverage",
"test:karma": "karma start --singleRun",
"test:all": "npm run test:lint && npm test && npm run test:karma",
"test:saucelabs": "karma start saucelabs.karma.conf.js --singleRun",
"build": "webpack",
"benchmark": "node benchmark",
"preversion": "npm run test:all",
"version": "npm run build && git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caiogondim/fast-memoize.git"
},
"author": "Caio Gondim <me@caiogondim.com> (http://caiogondim.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/caiogondim/fast-memoize/issues"
},
"homepage": "https://github.com/caiogondim/fast-memoize#readme",
"devDependencies": {
"benchmark": "^2.0.0",
"covert": "^1.1.0",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-tap": "^1.0.4",
"karma-webpack": "^1.7.0",
"lodash": "^4.0.0",
"logdown": "^1.2.5",
"lru-cache": "^4.0.0",
"memoizee": "^0.3.9",
"mocha": "^2.5.3",
"ramda": "^0.21.0",
"standard": "^6.0.7",
"tap": "^5.7.0",
"tape": "^4.5.1",
"underscore": "^1.8.3",
"webpack": "^1.13.1"
},
"standard": {
"ignore": [
"/benchmark/addy-osmani.js"
]
}
}