-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
55
56
{
"name": "speclate",
"version": "20.1.0",
"description": "",
"scripts": {
"build:client": "pwd && rollup -c ./rollup.config.js",
"build:client:watch": "npm run build:client -- --watch",
"test": "standard"
},
"bin": "./bin/speclate.js",
"main": "./client/speclate-bundle.js",
"module": "./client/entry.js",
"browser": "./speclate-client-module.js",
"unpkg": "./speclate-client-module-min.js",
"author": "Simon McManus",
"license": "MIT",
"dependencies": {
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"async.map": "0.5.x",
"async.parallel": "0.5.x",
"chokidar": "^3.3.1",
"lodash.clone": "4.5.x",
"lodash.merge": "4.x.x",
"mkdirp": "^1.0.4",
"rollup": "^2.6.1",
"sizlate": "^3.0.3",
"speclate-cli": "^17.0.0",
"speclate-fetch": "2.0.x"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.0",
"@rollup/plugin-json": "^4.0.3",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-notify": "^1.1.0",
"standard": "^11.0.1"
},
"standard": {
"ignore": [
"client",
"testRunner",
"test"
],
"globals": [
"describe",
"before",
"beforeAll",
"beforeEach",
"expect",
"it",
"test",
"fixture"
]
}
}