-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "perplex",
"version": "0.11.0",
"description": "",
"main": "index.js",
"scripts": {
"doc": "tsc --target es2017 --module es2015 && esdoc lib/",
"lint": "prettier -l 'src/**/*.ts'",
"lint:fix": "prettier --write 'src/**/*.ts'",
"precommit": "npm run lint && npm run test",
"prepack": "tsc && npm test",
"build": "tsc",
"test": "tape -r 'ts-node/register' test/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^7.0.10",
"@types/tape": "^4.2.30",
"esdoc": "^0.5.2",
"except": "^0.1.3",
"husky": "^0.14.3",
"prettier": "^1.10.2",
"tape": "^4.7.0",
"ts-node": "^3.2.1",
"tslint": "^4.5.1",
"typescript": "^3.7.2"
},
"repository": "https://github.com/jrop/perplex",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"lib/lexer-state.d.ts",
"lib/lexer-state.js",
"lib/lexer.js",
"lib/lexer.d.ts",
"lib/token-types.d.ts",
"lib/token-types.js",
"lib/token.d.ts",
"lib/token.js",
"index.js",
"index.d.ts"
]
}