-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 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
{
"name": "@isthmus/atom",
"version": "1.0.0-rc13",
"description": "A minimalist atom implementation",
"main": "cjs/index.js",
"module": "lib/index.js",
"files": [
"lib/",
"cjs/",
"dist/"
],
"scripts": {
"prepublishOnly": "npm run build",
"lint": "standard",
"lint:fix": "standard --fix",
"build": "run-s test babel cjs webpack",
"babel": "cross-env NODE_ENV=production babel -d ./lib ./src -s",
"cjs": "cross-env BABEL_ENV=node cross-env NODE_ENV=production babel -d ./cjs ./src -s",
"webpack": "cross-env NODE_ENV=production webpack -p --display-optimization-bailout",
"test": "run-s lint test:unit",
"test:unit": "jest --coverage",
"test:watch": "jest --coverage --watch",
"release": "xyz --repo git@github.com:schtauffen/isthmus-atom.git --increment"
},
"author": "Zach Dahl <z.schtauffen@gmail.com>",
"license": "ISC",
"repository": "schtauffen/isthmus-atom",
"standard": {
"ignore": [
"lib/",
"cjs/",
"**/__tests__/"
]
},
"jest": {
"moduleFileExtensions": [
"js"
],
"testMatch": [
"**/__tests__/*[-.]spec.js"
]
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"cross-env": "^5.0.5",
"deep-freeze": "0.0.1",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"ramda": "^0.24.1",
"sinon": "^2.4.1",
"standard": "^10.0.3",
"webpack": "^3.5.5",
"xyz": "^2.1.0"
},
"dependencies": {
"@isthmus/optics": "^1.0.0-rc1",
"crry": "^1.1.1"
}
}