forked from adopted-ember-addons/validated-changeset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "validated-changeset",
"version": "1.3.2",
"description": "Changesets for your local state",
"main": "dist/validated-changeset.umd.js",
"module": "dist/validated-changeset.es5.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && tsc --outDir dist/es && rollup -c rollup.config.ts",
"test": "jest",
"test:all": "npm run test && npm run test-external:ember-changeset && npm run test-external:ember-changeset-validations",
"test.watch": "jest --watch",
"test:debug:named": "node --inspect-brk node_modules/.bin/jest --runInBand --watch --testNamePattern",
"lint": "eslint . --ext=js,ts",
"lint:fix": "eslint . --ext=js,ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint",
"start": "tsc -w & rollup -c rollup.config.ts -w",
"stats": "node scripts/size-calc",
"prebuild": "rimraf dist",
"test-external:ember-changeset": "./bin/test-external-changeset.js ember-changeset https://github.com/poteto/ember-changeset.git",
"test-external:ember-changeset-validations": "./bin/test-external-changeset.js ember-changeset-validations https://github.com/poteto/ember-changeset-validations.git",
"contributors": "npx contributor-faces -e \"(*-bot|*\\[bot\\]|*-tomster|homu|bors)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/validated-changeset/validated-changeset.git"
},
"keywords": [
"changeset",
"data",
"validation",
"form"
],
"author": "Scott Newcomer",
"license": "ISC",
"bugs": {
"url": "https://github.com/validated-changeset/validated-changeset/issues"
},
"homepage": "https://github.com/validated-changeset/validated-changeset#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^2.0.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.13.9",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"chalk": "^4.1.0",
"command-line-args": "^5.1.1",
"debug": "^4.1.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^4.0.2",
"fs-extra": "^9.0.1",
"gzip-size": "^5.1.1",
"jest": "^24.9.0",
"prettier": "^2.6.2",
"pretty-bytes": "^5.3.0",
"rimraf": "^3.0.2",
"rollup": "^1.27.14",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-jest": "^24.2.0",
"typescript": "^4.7.2",
"yup": "^0.32.11"
},
"volta": {
"node": "14.19.1"
},
"dependencies": {
"@types/ungap__structured-clone": "^0.3.0",
"@ungap/structured-clone": "^0.3.4",
"i": "^0.3.7",
"npm": "^8.7.0"
}
}