-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "glam-props",
"version": "1.3.3",
"description": "",
"main": "lib/index.js",
"files": [
"*.md",
"__test__",
"LICENSE",
"lib",
"src"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"compile": "babel -d lib src",
"compile:watch": "babel -w -d lib src",
"clean": "rm -rf lib",
"beforePublish": "npm run clean && npm run test && npm run compile",
"publish-please": "publish-please",
"prepublish": "publish-please guard"
},
"jest": {
"collectCoverage": true,
"coverageDirectory": "./.coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bulby97/glam-props.git"
},
"author": "Stéphane Montlouis-Calixte <[email protected]> (https://github.com/bulby97)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bulby97/glam-props/issues"
},
"homepage": "https://github.com/bulby97/glam-props#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"jest": "^20.0.4",
"publish-please": "^2.3.1"
},
"dependencies": {
"jest-cli": "^20.0.4"
}
}