-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.03 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
{
"name": "immuta",
"version": "1.4.0",
"description": "Simple immutable data library that provides changed data snapshots and rollbacks",
"main": "dist/index.js",
"scripts": {
"build": "cross-env NODE_ENV=production rimraf dist && npm-run-all -p test lint -p build:**",
"build:immuta:babel": "babel src --out-dir dist",
"build:immuta:flow": "flow-copy-source src dist",
"flow:flow-typed": "rimraf flow-typed/npm && flow-typed install --ignoreDeps peer --overwrite || true",
"prepublishOnly": "npm-run-all build",
"test:perf": "babel-node perf/run.js",
"perf": "babel-node perf/tests/test1.js",
"try": "babel-node ./quick-try.js",
"lint": "eslint src",
"test": "ava --tap --color --fail-fast",
"test:watch": "ava --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odo-network/immuta.git"
},
"keywords": [
"immutable",
"mutable",
"copy-on-write",
"proxy-on-read"
],
"author": "Braden R. Napier",
"license": "MIT",
"peerDependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.4.4",
"ava": "^1.4.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-promise": "^4.1.1",
"flow-bin": "^0.98.1",
"flow-copy-source": "^2.0.4",
"flow-typed": "^2.5.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3"
},
"ava": {
"babel": false,
"compileEnhancements": false,
"verbose": true,
"files": [
"tests/*.js"
],
"sources": [
"src/**/*.js",
"!dist/*"
],
"require": [
"@babel/register"
],
"tap": true
}
}