forked from orourkedd/effects-as-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1005 Bytes
/
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
{
"name": "effects-as-data",
"version": "2.5.10",
"description": "A micro abstraction layer for Javascript that makes writing, testing, and monitoring side-effects easy.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/orourkedd/effects-as-data"
},
"scripts": {
"test": "jest",
"test-mocha": "mocha src/**/*.spec.js --recursive --compilers js:babel-register --require babel-polyfill",
"transpile": "babel src --out-dir es5 --source-maps",
"deploy": "npm run transpile && npm test && npm publish; rm -rf es5",
"perf": "node src/perf/fs"
},
"author": "orourkedd",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.0",
"babel-preset-es2015": "^6.24.1",
"jest-cli": "^20.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/test.js",
"<rootDir>/src/test.js",
"<rootDir>/es5/test.js"
]
}
}