forked from thefrontside/microstates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·94 lines (94 loc) · 2.51 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
{
"name": "microstates",
"version": "0.8.0",
"description": "Composable State Primitives for JavaScript",
"keywords": [
"lens",
"state-machine",
"immutable",
"composable",
"models",
"state"
],
"homepage": "https://github.com/microstates/microstates.js#readme",
"bugs": {
"url": "https://github.com/microstates/microstates.js/issues"
},
"license": "MIT",
"author": "Charles Lowell <charles@frontside.io>, Taras Mankovski <taras@frontside.io>",
"files": [
"src",
"dist",
"README.md"
],
"main": "dist/microstates.cjs.js",
"module": "dist/microstates.es.js",
"repository": "git+ssh://git@github.com/microstates/microstates.js.git",
"scripts": {
"prepare": "npm run build",
"build": "rollup --config",
"coverage": "npm test -- --coverage --no-cache",
"coverage:watch": "npm run coverage -- --watch",
"prerelease": "npm test",
"release": "npm pack",
"test": "jest",
"start": "npm test -- --watch",
"lint": "eslint src"
},
"dependencies": {
"funcadelic": "0.5.0",
"get-prototype-descriptors": "0.6.0",
"invariant": "2.2.4",
"ramda": "^0.25.0",
"symbol-observable": "1.2.0"
},
"devDependencies": {
"@babel/core": "7.0.0-beta.44",
"@babel/plugin-proposal-class-properties": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.2.3",
"babel-jest": "22.4.3",
"eslint": "4.19.1",
"eslint-plugin-prefer-let": "1.0.1",
"husky": "0.14.3",
"jest": "22.4.3",
"jest-runner-eslint": "0.4.0",
"jsonfile": "^4.0.0",
"lint-staged": "6.0.0",
"object.getownpropertydescriptors": "2.0.3",
"prettier": "^1.10.2",
"pretty-error": "2.1.1",
"pretty-format": "22.1.0",
"rollup": "0.60.1",
"rollup-plugin-babel": "^4.0.0-beta.0",
"rollup-plugin-filesize": "2.0.0",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rxjs": "6.2.1",
"standard-version": "^4.2.0"
},
"jest": {
"setupFiles": [
"./scripts/shims.js"
],
"globalSetup": "./scripts/build.js",
"collectCoverageFrom": [
"dist/microstates.es.js"
],
"testRegex": "(/tests/.*|\\.(test|spec))\\.(js)$",
"moduleFileExtensions": [
"js",
"json"
],
"watchPathIgnorePatterns": [
"<rootDir>/dist/"
],
"moduleNameMapper": {
"microstates": "<rootDir>/dist/microstates.es.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(ramda)/)"
]
}
}