-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "ddata",
"author": "Lloyd Brookes <[email protected]>",
"version": "0.1.28",
"description": "ddata",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/ddata.git"
},
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [],
"license": "MIT",
"engines": {
"node": ">=12.20"
},
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test/*.js",
"dist": "75lb-nature cjs-build index.js",
"p1": "jsdoc-parse '../jsdoc-parse/test/fixture/**/*.js' > test/fixture/everything.json",
"p2": "jsdoc-parse ../file-set/lib/file-set.js > test/fixture/file-set.json",
"p3": "jsdoc-parse ../handbrake-js/lib/* > test/fixture/handbrake.json",
"p": "npm run p1; npm run p2; npm run p3; echo"
},
"peerDependencies": {
"@75lb/nature": "latest"
},
"peerDependenciesMeta": {
"@75lb/nature": {
"optional": true
}
},
"files": [
"index.js",
"lib",
"dist"
],
"standard": {
"ignore": [
"tmp",
"dist"
],
"envs": []
},
"dependencies": {
"common-sequence": "^3.0.0"
}
}