-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "funcadelic",
"version": "0.5.7",
"description": "Functional Fundamentals are Fun!",
"main": "dist/funcadelic.cjs.js",
"module": "dist/funcadelic.es.js",
"unpkg": "dist/funcadelic.umd.js",
"repository": "https://github.com/cowboyd/funcadelic.js.git",
"author": "Charles Lowell <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup --config",
"bench": "node ./scripts/bench",
"lint": "eslint src tests",
"pretest": "npm run build && npm run lint",
"test": "jest",
"prepare": "npm test",
"start": "jest --watch"
},
"files": [
"README.md",
"src",
"dist"
],
"dependencies": {
"tiny-invariant": "^1.0.4"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/preset-env": "^7.2.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-plugin-dev-expression": "^0.2.1",
"benchmark": "^2.1.4",
"cli-table2": "^0.2.0",
"colors": "^1.2.1",
"eslint": "^5.0.1",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prefer-let": "^1.0.1",
"jest": "^23.6.0",
"lodash.curry": "^4.1.1",
"lodash.flow": "^3.5.0",
"object.getownpropertydescriptors": "^2.0.3",
"ora": "^3.0.0",
"pretty-error": "^2.1.1",
"regenerator-runtime": "0.13.1",
"rollup": "^0.67.4",
"rollup-plugin-babel": "^4.0.0-beta.3",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "3.4.0",
"rollup-plugin-replace": "2.1.0"
},
"jest": {
"testRegex": "(/tests/.*|\\.(test|spec))\\.(js)$",
"moduleFileExtensions": [
"js",
"json"
],
"setupFiles": [
"./scripts/shims.js"
],
"globalSetup": "./scripts/build.js",
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"watchPathIgnorePatterns": [
"<rootDir>/dist/"
],
"moduleNameMapper": {
"funcadelic": "<rootDir>/dist/funcadelic.es.js"
}
}
}