This repository has been archived by the owner on Sep 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.48 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
{
"name": "js-concurrency",
"repository": "https://github.com/sammynave/js-concurrency",
"version": "0.0.7",
"description": "general concurrency primitives inspired by (stolen from) ember-concurrency",
"main": "dist/js-concurrency.es.js",
"module": "dist/js-concurrency.es.js",
"browser": "dist/js-concurrency.iife.js",
"author": "sammy nave",
"license": "MIT",
"sideEffects": false,
"types": "index.d.ts",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"rollup": "^1.1.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-filesize": "^6.0.1",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-svelte": "^5.0.1",
"rollup-plugin-terser": "^4.0.3",
"rollup-plugin-tslint": "^0.2.2",
"rollup-plugin-typescript2": "^0.19.2",
"svelte": "^2.16.0",
"trash-cli": "^1.4.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-immutable": "^5.1.2",
"typescript": "^3.3.1"
},
"scripts": {
"build": "yarn clean && rollup -c",
"clean": "trash ./dist",
"dev": "yarn build -w --environment BUILD:dev",
"test": "run-s test:*",
"test:lint": "tslint -t verbose --project . && prettier \"src/**/*.ts\" --list-different",
"test:unit": "echo 'no tests yet'",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project ."
},
"prettier": {
"singleQuote": true
}
}