-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.64 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": "osagai",
"version": "0.3.5",
"description": "A tiny library for creating WebComponents in a Functional way",
"main": "osagai.js",
"repository": "github:HenriqueLimas/osagai",
"homepage": "https://henriquelimas.github.io/osagai/",
"scripts": {
"build": "rollup -c",
"cp:package": "npm run build && cp package.json dist/ && cp README.md dist/",
"test": "jest --config jest.config.js",
"test:all": "npm test && npm run test:integration:ci",
"test:integration": "karma start karma.conf.js",
"test:integration:watch": "karma start karma.conf.js --no-single-run --auto-watch",
"test:integration:ci": "karma start karma.conf.js --browsers ChromeHeadless",
"prettier": "prettier --write 'lib/**/*.js'",
"release": "npm run build && npm run cp:package && npm run test:all && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish dist"
},
"author": "Henrique Limas <henrique.ramos.limas@gmail.com>",
"keywords": ["osagai", "webcomponents", "functional-programming"],
"license": "ISC",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.6.0",
"babel-preset-env": "^1.7.0",
"electric-cli": "^3.0.4",
"jasmine-core": "^3.3.0",
"jest": "^23.6.0",
"karma": "^4.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^2.0.1",
"karma-rollup-preprocessor": "^6.1.2",
"prettier": "1.15.3",
"regenerator-runtime": "^0.13.1",
"rollup": "^0.67.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^5.0.1",
"rollup-plugin-node-resolve": "^3.4.0"
}
}