-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.05 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.05 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
{
"name": "@most/prelude",
"version": "1.8.0",
"description": "prelude",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"type-definitions"
],
"scripts": {
"build": "npm run build:dist && npm run build:flow",
"build:dist": "rollup -c",
"build:flow": "cpy src/index.js.flow dist",
"prepare": "npm run build",
"test": "npm run test:lint && npm run test:flow && npm run test:unit",
"test:lint": "eslint --fix 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "cross-env NODE_ENV=test nyc mocha",
"test:flow": "flow check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mostjs/prelude.git"
},
"author": "Brian Cavalier <brian@hovercraftstudios.com> (github.com/briancavalier)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mostjs/prelude/issues"
},
"homepage": "https://github.com/mostjs/prelude#readme",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.0",
"@types/assert": "1.4.6",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"cpy-cli": "^3.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.1.0",
"eslint-config-standard-with-typescript": "^8.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "0.114.0",
"mocha": "^6.1.4",
"nyc": "^15.0.0",
"rollup": "^2.52.8",
"rollup-plugin-typescript2": "^0.25.2",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
},
"standard": {
"ignore": [
"test/perf",
"test/flow"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"reporter": [
"text-summary"
],
"exclude": [
"dist/**",
"coverage/**"
]
}
}