-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.74 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": "stromboli",
"version": "0.22.0",
"description": "Simple yet powerful component builder",
"main": "cjs/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rimraf build es cjs types",
"precover": "rimraf coverage .nyc_output",
"prebuild": "npm run clean",
"prepack": "npm run clean && npm run build:cjs -- && npm run build:es -- && mv build/** .",
"pretest": "npm run build",
"postpack": "npm run clean",
"start": "node index.js",
"build": "npm run build:cjs -- --sourceMap true && npm run build:es",
"build:cjs": "tsc --project . --module commonjs --outDir build/cjs --declaration true --declarationDir build/types",
"build:es": "tsc --project . --module es6 --outDir build/es",
"test": "npm run fastest",
"fastest": "ts-node node_modules/tape/bin/tape 'test/**/test.ts' | tap-bail | tap-spec",
"cover": "rimraf .nyc_output coverage && nyc npm t",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"doc": "typedoc --mode file --out docs --name Stromboli --excludePrivate --excludeNotExported src/lib"
},
"author": "Eric MORAND <[email protected]>",
"dependencies": {
"@types/node": "^10.5.8"
},
"repository": {
"type": "git",
"url": "git://github.com/ericmorand/stromboli"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/sinon": "^7.0.3",
"@types/tape": "^4.2.33",
"coveralls": "^3.0.2",
"fs-extra": "^7.0.0",
"nyc": "^12.0.2",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"tap": "^11.1.5",
"tap-bail": "^1.0.0",
"tap-mocha-reporter": "^3.0.7",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"ts-node": "^7.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.0.1"
}
}