-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.37 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
{
"name": "@tiaanduplessis/freezo",
"version": "1.0.0",
"description": "Deeply freeze/thaw a array or object",
"license": "MIT",
"repository": {
"url": "https://github.com/tiaanduplessis/freezo",
"type": "git"
},
"homepage": "https://github.com/tiaanduplessis/freezo",
"bugs": "https://github.com/tiaanduplessis/freezo",
"main": "dist/freezo.js",
"browser": "dist/freezo.js",
"jsnext:main": "dist/freezo.es.js",
"files": ["dist"],
"scripts": {
"test": "jest",
"test:cov": "npm run test -- --coverage",
"lint": "standard 'src/**/*.js'",
"lint:fix": "npm run lint -- --fix",
"build": "bili --format es --format umd --compress",
"start": "npm run test",
"pretest": "npm run format && npm run lint:fix",
"format": "prettier --print-width 100 --semi false --single-quote --write 'src/**/*.js'",
"precommit": "npm test",
"prepublish": "npm run build",
"release": "npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push --tags && npm publish"
},
"author": "tiaanduplessis <tiaanduplessis@hotmail.com>",
"babel": {
"presets": [["env"]]
},
"devDependencies": {
"jest": "^20.0.4",
"standard": "^10.0.2",
"babel-preset-env": "^1.6.0",
"bili": "^0.17.3",
"husky": "^0.14.3",
"prettier": "~1.5.2"
},
"jest": {
"coverageDirectory": "./coverage/"
}
}