-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.85 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
{
"name": "bulma-classnames",
"version": "0.0.0-development",
"description": "Simple utility for creating Bulma.css classnames using JavaScript objects",
"main": "dist/bulma-classnames.js",
"module": "dist/bulma-classnames.m.js",
"source": "src/index.js",
"typings": "src/types.js",
"repository": "https://github.com/seanwlawrence/bulma-classnames.git",
"author": "Sean W. Lawrence",
"license": "MIT",
"private": false,
"scripts": {
"develop": "microbundle watch",
"flow": "flow",
"flow:stop": "flow stop",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "yarn flow:stop && yarn flow && yarn test",
"lint": "prettier-eslint --config .prettierrc.js --eslint-config-path .eslintrc.js --write \"src/*.js\"",
"prepare": "yarn test:ci && yarn lint",
"build": "yarn prepare && microbundle",
"commit": "yarn test:ci && git-cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once \"yarn semantic-release\""
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.2.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-jest": "^21.18.0",
"flow-bin": "^0.77.0",
"jest": "^23.4.2",
"microbundle": "^0.6.0",
"prettier": "^1.14.0",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"semantic-release": "^15.9.5",
"travis-deploy-once": "^5.0.2"
}
}