-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 3.66 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "reclare",
"description": "Declarative state and logic management for modern Javascript applications",
"author": "Oguz Gelal <[email protected]> (https://oguzgelal.com/)",
"license": "MIT",
"version": "0.0.4",
"main": "dist/reclare.min.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.4",
"babel-plugin-check-es2015-constants": "^6.3.13",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-jsx": "^6.3.13",
"babel-plugin-transform-decorators-legacy": "^1.2.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.3.13",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-classes": "^6.3.13",
"babel-plugin-transform-es2015-computed-properties": "^6.3.13",
"babel-plugin-transform-es2015-destructuring": "^6.3.13",
"babel-plugin-transform-es2015-for-of": "^6.3.13",
"babel-plugin-transform-es2015-function-name": "^6.3.13",
"babel-plugin-transform-es2015-literals": "^6.3.13",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-object-super": "^6.3.13",
"babel-plugin-transform-es2015-parameters": "^6.3.13",
"babel-plugin-transform-es2015-shorthand-properties": "^6.3.13",
"babel-plugin-transform-es2015-spread": "^6.3.13",
"babel-plugin-transform-es2015-sticky-regex": "^6.3.13",
"babel-plugin-transform-es2015-template-literals": "^6.3.13",
"babel-plugin-transform-es2015-unicode-regex": "^6.3.13",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-display-name": "^6.4.0",
"babel-plugin-transform-react-jsx": "^6.4.0",
"benchmark": "^2.1.4",
"coveralls": "^3.0.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"immutadot": "^1.0.0",
"jest": "^22.4.4",
"lodash": "^4.17.10",
"pre-commit": "^1.2.2",
"prettier": "1.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.58.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"scripts": {
"check": "npm run jest:cover && npm run lint",
"check:local": "npm run jest && npm run lint",
"jest": "./node_modules/.bin/jest --coverage",
"jest:cover": "./node_modules/.bin/jest --coverage --coverageReporters=text-lcov | ./node_modules/.bin/coveralls",
"lint": "./node_modules/.bin/eslint --fix '{src,test}/**/*'",
"prettier": "./node_modules/.bin/prettier --config .prettierrc --write '{src,test}/**/*.js'",
"add": "git add --all",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir dist/cjs",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir dist/es",
"build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c",
"build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c",
"build": "npm run check && npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:local": "npm run check:local && npm run clean && npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"publish:patch": "npm run build:local && npm version patch && npm publish",
"clean": "rimraf dist"
},
"pre-commit": [
"jest",
"prettier",
"lint",
"add"
],
"files": [
"dist"
],
"jest": {
"testRegex": "(/test/.*\\.spec.js)$"
}
}