forked from steelbrain/php-serialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.61 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
{
"name": "php-serialize",
"version": "5.0.0",
"description": "PHP serialize/unserialize in Javascript",
"main": "lib/cjs/index.js",
"typings": "lib/typings/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"test": "ava",
"test:update-php-output": "php test/serialize.php > test/serialize.php.out",
"lint": "(tsc -p . --noEmit) && (eslint . --ext .ts) && (prettier --list-different src/*.ts)",
"prepare": "yarn build:clean ; yarn build:esm ; yarn build:cjs ; yarn build:typings",
"build:clean": "rm -rf lib",
"build:esm": "tsc --module es2015 --target es5 --outDir lib/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir lib/cjs",
"build:typings": "tsc --declaration --outDir lib/typings --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steelbrain/php-serialize.git"
},
"author": "steelbrain",
"license": "MIT",
"bugs": {
"url": "https://github.com/steelbrain/php-serialize/issues"
},
"files": [
"lib/*"
],
"homepage": "https://github.com/steelbrain/php-serialize#readme",
"devDependencies": {
"ava": "^3.7.0",
"eslint-config-steelbrain": "^9.0.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {},
"ava": {
"files": [
"test/*-test.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
},
"engines": {
"node": ">= 8"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}