-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
57 lines (57 loc) · 1.5 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
{
"name": "angular-expressions",
"version": "1.4.3",
"description": "Angular expressions as standalone module",
"main": "./lib/main.js",
"scripts": {
"es-check": "es-check es5 lib/*.js",
"preversion": "npm run es-check && npm run lint && npm run test && npm run test:typings && attw . --pack",
"test": "mocha test/main.test.js -R spec",
"test:typings": "tsd .",
"lint": "eslint lib test && prettier lib/*.js test/*.js lib/*.ts *.md --list-different",
"lint:fix": "eslint --fix lib test && prettier --write lib/*.js test/*.js *.md lib/*.ts"
},
"keywords": [
"angular",
"expression",
"parser",
"lexer",
"parse",
"eval",
"source"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"chai": "^4.3.7",
"es-check": "^7.2.1",
"eslint": "^9.16.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"prettier": "^3.4.2",
"tsd": "^0.31.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/angular-expressions.git"
},
"testling": {
"harness": "mocha",
"files": "test/main.js",
"browsers": [
"ie/8..latest",
"chrome/27..latest",
"firefox/22..latest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
},
"author": "peerigon <[email protected]>",
"types": "./lib/main.d.ts",
"license": "Unlicense"
}