forked from nx-js/observer-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.29 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
86
87
88
89
{
"name": "@nx-js/observer-util",
"version": "4.2.2",
"description": "Simple transparent reactivity with 100% language coverage. Made with ES6 Proxies.",
"main": "dist/cjs.es5.js",
"module": "dist/es.es5.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"test": "node ./scripts/test.js",
"test-builds": "node ./scripts/testBuilds.js",
"debug": "node ./scripts/debug.js",
"lint": "standard",
"lint-fix": "prettier --ignore-path '.gitignore' --write '**/!(bundle).js' && standard --fix",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"build": "node ./scripts/build.js",
"build-toc": "node ./scripts/buildToc.js"
},
"author": {
"name": "Miklos Bertalan",
"email": "miklos.bertalan@risingstack.com"
},
"repository": {
"type": "git",
"url": "git@github.com:nx-js/observer-util.git"
},
"bugs": {
"url": "https://github.com/nx-js/observer-util/issues"
},
"homepage": "https://github.com/nx-js/observer-util#readme",
"license": "MIT",
"keywords": [
"nx",
"observe",
"observable",
"data",
"binding",
"proxy",
"ES6",
"reactive"
],
"devDependencies": {
"babel-core": "6.26.3",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"buble": "^0.15.2",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^6.0.0",
"karma-source-map-support": "^1.3.0",
"markdown-toc": "^1.2.0",
"mocha": "^5.2.0",
"nyc": "12.0.2",
"pre-push": "^0.1.1",
"prettier": "^1.13.5",
"rollup": "^0.60.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-auto-external": "^1.2.0",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-coverage": "^0.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"standard": "^11.0.1"
},
"engines": {
"node": ">=6.5.0"
},
"standard": {
"env": [
"browser",
"mocha"
]
},
"pre-push": [
"lint",
"test"
]
}