-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "knockout-esnext",
"description": "A modernized fork of Knockout.js intended for ES6+ browsers only",
"homepage": "http://knockoutjs.com/",
"version": "3.5.1-mod13",
"license": "MIT",
"author": "The Knockout.js team",
"main": "build/output/knockout-latest.js",
"types": "build/types/knockout.d.ts",
"scripts": {
"prepublish": "grunt",
"pretest": "npm run rollup-dev",
"test": "node spec/runner.node.js",
"rollup-dist": "rollup -c --environment BUILD_TARGET_ENV:dist",
"rollup-dev": "rollup -c --environment BUILD_TARGET_ENV:dev",
"lint": "eslint --max-warnings 5 src/"
},
"repository": {
"type": "git",
"url": "https://github.com/justlep/knockout-esnext.git"
},
"bugs": "https://github.com/knockout/knockout-esnext/issues",
"testling": {
"preprocess": "build/build.sh",
"html": "spec/runner.html?src=build/output/knockout-esnext-latest.js&testling=true",
"browsers": [
"chrome/38..latest",
"firefox/36..latest",
"safari/9.0..latest",
"opera/25..latest",
"iphone/6..latest",
"ipad/6..latest"
]
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"devDependencies": {
"@rollup/pluginutils": "^4.0.0",
"eslint": "^7.10.0",
"eslint-plugin-log-filenames": "~1.0.2",
"grunt": "~1.0.4",
"grunt-cli": "~1.3.2",
"grunt-load-npm-run-tasks": "~1.0.3",
"rollup": "^2.28.2",
"rollup-plugin-terser": "^7.0.2"
}
}