-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "immutable-set",
"version": "2.2.2",
"description": "Set nested properties of an object while respecting the principles of immutability",
"main": "lib/set.js",
"author": "M6Web",
"license": "MIT",
"keywords": [
"set",
"immutable",
"state",
"react",
"redux"
],
"repository": {
"type": "git",
"url": "https://github.com/M6Web/immutable-set.git"
},
"files": [
"src/",
"lib/"
],
"scripts": {
"build": "babel src --out-dir lib",
"babel-watch": "babel src --out-dir lib --watch",
"format": "prettier-eslint --write src/**/*.js tests/**/*.js",
"lint": "eslint src/**/*.js tests/**/*.js",
"test": "jest",
"test:ci": "yarn jest --coverage",
"preversion": "yarn test && yarn lint",
"version": "yarn build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/cli": "7.7.4",
"@babel/preset-env": "7.7.4",
"@m6web/eslint-plugin": "2.0.0",
"deep-freeze": "0.0.1",
"jest": "24.9.0"
}
}