-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.31 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.31 KB
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
{
"name": "basic-cursors",
"version": "3.0.0",
"description": "basic set of functional cursors",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist",
"postdist": "npm run uglify",
"examples": "npm run examples:bundle && npm run examples:serve",
"examples:serve": "http-server -c-1 -i -e html -o -p 6510 examples",
"format": "prettier-standard \"{bin,examples,src,spec}/**/*.[jt]@(s|sx)\"",
"preexamples:bundle": "rimraf spec/examples/*.js",
"examples:bundle": "browserify examples/index.ts -p [ tsify --project examples ] -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | terser -c -m --toplevel > examples/index.js",
"prepublish": "npm run dist",
"pretest": "npm run dist",
"test": "jasmine",
"uglify": "terser dist/index.js -c -m --toplevel -o dist/index.min.js"
},
"keywords": [
"cursor",
"functional",
"lens"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/basic-cursors.git"
},
"bugs": {
"url": "https://github.com/zenyway/basic-cursors/issues"
},
"homepage": "https://github.com/zenyway/basic-cursors#readme",
"devDependencies": {
"@types/xterm": "3.0.0",
"@typescript-eslint/eslint-plugin": "2.0.0",
"@typescript-eslint/parser": "2.0.0",
"basic-compose": "5.0.0",
"browserify": "16.5.0",
"bundle-collapser": "1.3.0",
"common-shakeify": "0.4.6",
"http-server": "0.11.1",
"husky": "3.0.4",
"jasmine": "3.4.0",
"lint-staged": "9.2.3",
"prettier-standard": "9.1.1",
"rimraf": "3.0.0",
"rxjs": "6.5.2",
"standard": "14.0.0",
"terser": "4.2.0",
"tsify": "4.0.1",
"typescript": "3.5.3",
"uglifyify": "5.0.2",
"xterm": "3.14.5"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier-standard",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
]
}
}