-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "cycle-lot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"uglify": "uglifyjs build/index.js -o build/index.min.js --compress --mangle",
"bundle": "rollup build/index.min.js --format umd --name \"lot\" --file dist/index.js",
"dist": "npm run build && npm run uglify && npm run bundle && rimraf build",
"prepublishOnly": "npm run dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shfrmn/cycle-lot.git"
},
"keywords": [
"cycle",
"cyclejs",
"collection",
"list",
"component"
],
"author": "Joseph Shaferman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shfrmn/cycle-lot/issues"
},
"homepage": "https://github.com/shfrmn/cycle-lot#readme",
"devDependencies": {
"prettier": "^1.14.0",
"rimraf": "^2.6.2",
"rollup": "^0.63.4",
"typescript": "^3.0.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
"@cycle/isolate": "^3.4.0",
"xstream": "^11.7.0"
},
"files": [
"src/**/*",
"dist/**/*",
"tsconfig.json"
],
"prettier": {
"tabWidth": 2,
"semi": false,
"bracketSpacing": false,
"arrowParens": "always"
}
}