-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.09 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
{
"name": "ifid",
"version": "1.1.1",
"description": "A package to generate Interactive Fiction Identifiers.",
"main": "dist/node.es6/index.js",
"browser": "dist/browser/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "cross-env NODE_ENV=production npm run build-node && npm run build-browser && npm run copy-declaration-file",
"build-node": "npm run build-node-esnext && npm run build-node-es6",
"build-node-esnext": "tsc",
"build-node-es6": "tsc --project tsconfig.es6.json",
"copy-declaration-file": "copy dist\\node.esnext\\index.d.ts src\\",
"build-browser": "cross-env NODE_ENV=production webpack -p",
"build-browser:dev": "cross-env NODE_ENV=development webpack",
"test": "cross-env NODE_ENV=test jest",
"test-coverage": "npm run test -- --coverage",
"test-watch": "npm run test -- --watch",
"test-coverage-watch": "npm run test -- --watch --coverage",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/furkleindustries/ifid.git"
},
"keywords": [
"ifid",
"interactive",
"fiction"
],
"author": "furkle",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/furkleindustries/ifid/issues"
},
"homepage": "https://github.com/furkleindustries/ifid#readme",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@types/jest": "^23.3.5",
"@types/node": "^10.11.7",
"@types/uuid": "^3.4.4",
"babel-env": "^2.4.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-preset-jest": "^23.2.0",
"cross-env": "^5.2.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"typescript": "^3.1.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"uuid": "^3.3.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"testMatch": [
"**/tests/**/*.test.{j,t}s?(x)"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
}
}