-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "observable-slim",
"description": "Observable Slim is a singleton that utilizes ES6 Proxies to observe changes made to an object and any nested children of that object. It is intended to assist with state management and one-way data binding.",
"version": "0.1.6",
"main": "observable-slim.js",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.12.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-shell": "^0.8.0",
"gulp-uglify-es": "^3.0.0",
"gulp-useref": "^5.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"typescript": "^4.6.3"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "gulp",
"type": "npx -p typescript tsc"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"nyc": {
"exclude": [
"proxy.js",
"test"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ElliotNB/observable-slim.git"
},
"license": "MIT",
"author": "ElliotNB",
"homepage": "https://github.com/ElliotNB/observable-slim",
"bugs": {
"url": "https://github.com/ElliotNB/observable-slim/issues"
}
}