-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.65 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
{
"name": "another-selector-parser",
"version": "0.0.0-alpha3",
"description": "",
"main": "index.js",
"scripts": {
"flow": "./node_modules/.bin/flow check",
"lint": "./node_modules/.bin/eslint src/**/*.js",
"pretest": "npm run flow && npm run lint",
"test": "NODE_ENV=test ./node_modules/.bin/jest --coverage",
"regenerateFixtures:Tokenizer": "make fixtures_tokenizer",
"regenerateFixtures:Parser": "make fixtures_parser",
"preversion": "npm test",
"version": "make all -j4 && git add -A dist",
"postversion": "git push && git push --tags"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "clentfort/another-selector-parser.git"
},
"keywords": [
"ast",
"css",
"node",
"parser",
"plugin",
"selector",
"transform",
"traverse",
"visitor"
],
"author": "Christian Lentfort @_chris_lent_",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-jest": "^13.0.0",
"babel-plugin-transform-flow-strip-types": "^6.8.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-flowtype": "^2.2.7",
"eslint-plugin-import": "^1.8.1",
"flow-bin": "^0.28.0",
"jest-cli": "^13.1.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
]
}
}