-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "@microstates/lens",
"version": "1.0.0-beta.2",
"description": "Tiny functional lenses that emerged from building microstates.js",
"repository": "http://github.com/microstates/lens",
"author": "Charles Lowell <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "pack build",
"prepare": "yarn build",
"publish": "pack publish",
"prepublishOnly": "yarn test && yarn build",
"test": "mocha --recursive -r tests/setup tests",
"lint": "eslint ./"
},
"dependencies": {
"funcadelic": "^0.5.7"
},
"devDependencies": {
"@babel/core": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/register": "7.4.4",
"@pika/pack": "0.3.7",
"@pika/plugin-build-node": "0.3.16",
"@pika/plugin-build-web": "0.3.16",
"@pika/plugin-standard-pkg": "0.3.16",
"babel-eslint": "10.0.1",
"eslint": "5.16.0",
"eslint-plugin-prefer-let": "1.0.1",
"expect": "24.7.1",
"mocha": "6.1.4"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"tests/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
]
]
}
}