-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "relessjs",
"description": "Simplified alternative of Flux architecture using function calls as 'emitting implicit actions'",
"version": "0.0.2-beta",
"main": "dist/reless.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"license": "MIT",
"repository": "alber70g/reless-js",
"scripts": {
"test": "jest --coverage --no-cache",
"test:dist": "npm run test -- --setupTestFrameworkScriptFile ./test/test.dist.js",
"test:distmin": "npm run test -- --setupTestFrameworkScriptFile ./test/test.dist.min.js",
"build": "npm run test && npm run bundle && npm run minify && npm run test:dist && npm run test:distmin",
"bundle": "rollup -c",
"minify": "uglifyjs dist/reless.js -o dist/reless.min.js --mangle --compress warnings=true",
"prepublish": "npm run build",
"format": "prettier --semi false --write 'src/**/*.js'",
"release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"redux",
"flux",
"architecture",
"single state",
"functional"
],
"author": "Albert Groothedde",
"private": false,
"devDependencies": {
"babel-jest": "^21.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jest": "^21.0.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2"
},
"jest": {
"transform": {
".*\\.js": "babel-jest"
}
},
"quokka": {
"babel": true
}
}